diff options
author | Markus Brueffer <markus@FreeBSD.org> | 2004-06-06 01:27:57 +0000 |
---|---|---|
committer | Markus Brueffer <markus@FreeBSD.org> | 2004-06-06 01:27:57 +0000 |
commit | 1812ad0a8e8a3c77a8ed76d7b7c8c7bb9d96044c (patch) | |
tree | cfe28ae7d005c9aca020dad8667daacac8f8142e /ftp/kbear/files/patch-transferqueueconfigwidget.cpp | |
parent | Add EXTRACT_ONLY to prevent a warning with trying to extract the uncompressed (diff) |
- Don't use Makefile.kde anymore
- Add patch to work around a problem with transfers not starting properly
in the default install
Notes
Notes:
svn path=/head/; revision=110916
Diffstat (limited to 'ftp/kbear/files/patch-transferqueueconfigwidget.cpp')
-rw-r--r-- | ftp/kbear/files/patch-transferqueueconfigwidget.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ftp/kbear/files/patch-transferqueueconfigwidget.cpp b/ftp/kbear/files/patch-transferqueueconfigwidget.cpp new file mode 100644 index 000000000000..93716ce26046 --- /dev/null +++ b/ftp/kbear/files/patch-transferqueueconfigwidget.cpp @@ -0,0 +1,11 @@ +--- kbear/plugins/transferqueue/transferqueueconfigwidget.cpp.orig Sun Jun 6 03:12:32 2004 ++++ kbear/plugins/transferqueue/transferqueueconfigwidget.cpp Sun Jun 6 03:13:35 2004 +@@ -110,7 +110,7 @@ + m_config->sync(); + } + m_sysShutdownCheckBox->setChecked( m_config->readBoolEntry( QString::fromLatin1("SysShutdownWhenDone"), false ) ); +- m_queueCheckBox->setChecked( m_config->readBoolEntry( QString::fromLatin1("QueueTransfers"), false ) ); ++ m_queueCheckBox->setChecked( m_config->readBoolEntry( QString::fromLatin1("QueueTransfers"), true ) ); + m_countSpinBox->setValue( m_config->readUnsignedNumEntry( QString::fromLatin1("NumberOfTransfers"), 1 ) ); + m_disconnectCommandLineEdit->setText( m_config->readEntry( QString::fromLatin1("DisconnectCommand"), QString::fromLatin1("kppp -k") ) ); + |