mirror of
https://github.com/KDE/konsole.git
synced 2026-05-24 06:28:08 -04:00
Revert part of #760591 which was committed unintentionally.
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=760592
This commit is contained in:
@@ -23,7 +23,6 @@
|
||||
// Qt
|
||||
#include <QtGui/QButtonGroup>
|
||||
#include <QtGui/QBoxLayout>
|
||||
#include <QtGui/QCheckBox>
|
||||
#include <QtGui/QLabel>
|
||||
#include <QtGui/QRadioButton>
|
||||
#include <QtGui/QSpinBox>
|
||||
@@ -100,11 +99,8 @@ HistorySizeDialog::HistorySizeDialog( QWidget* parent )
|
||||
_fixedHistoryButton->click();
|
||||
_fixedHistoryButton->setFocus( Qt::OtherFocusReason );
|
||||
|
||||
_useInNewTerminalsCheck = new QCheckBox(i18n("Use this setting in new terminals"),this);
|
||||
dialogLayout->addSpacing(20);
|
||||
dialogLayout->addWidget(_useInNewTerminalsCheck);
|
||||
|
||||
connect(this,SIGNAL(defaultClicked()),this,SLOT(useDefaults()));
|
||||
|
||||
connect(this,SIGNAL(accepted()),this,SLOT(emitOptionsChanged()));
|
||||
}
|
||||
|
||||
@@ -113,10 +109,6 @@ void HistorySizeDialog::emitOptionsChanged()
|
||||
emit optionsChanged( mode() , lineCount() );
|
||||
}
|
||||
|
||||
bool HistorySizeDialog::useInNewTerminals() const
|
||||
{
|
||||
return _useInNewTerminalsCheck->isChecked();
|
||||
}
|
||||
void HistorySizeDialog::setDefaultMode( HistoryMode mode ) { _defaultMode = mode; }
|
||||
HistorySizeDialog::HistoryMode HistorySizeDialog::defaultMode() const { return _defaultMode; }
|
||||
void HistorySizeDialog::setDefaultLineCount( int count ) { _defaultLineCount = count; }
|
||||
|
||||
Reference in New Issue
Block a user