diff options
Diffstat (limited to 'karm/preferences.cpp')
-rw-r--r-- | karm/preferences.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/karm/preferences.cpp b/karm/preferences.cpp index b270a2b2e..24a5e8c41 100644 --- a/karm/preferences.cpp +++ b/karm/preferences.cpp @@ -54,12 +54,12 @@ void Preferences::makeBehaviorPage() TQGridLayout* tqlayout = new TQGridLayout( topLevel, 2, 2 ); tqlayout->setColStretch( 1, 1 ); - _doIdleDetectionW = new QCheckBox + _doIdleDetectionW = new TQCheckBox ( i18n("Detect desktop as idle after"), behaviorPage, "_doIdleDetectionW"); - _idleDetectValueW = new QSpinBox + _idleDetectValueW = new TQSpinBox (1,60*24, 1, behaviorPage, "_idleDetectValueW"); _idleDetectValueW->setSuffix(i18n(" min")); - _promptDeleteW = new QCheckBox + _promptDeleteW = new TQCheckBox ( i18n( "Prompt before deleting tasks" ), behaviorPage, "_promptDeleteW" ); tqlayout->addWidget(_doIdleDetectionW, 0, 0 ); @@ -113,7 +113,7 @@ void Preferences::makeStoragePage() tqlayout->setColStretch( 1, 1 ); // autosave - _doAutoSaveW = new QCheckBox + _doAutoSaveW = new TQCheckBox ( i18n("Save tasks every"), storagePage, "_doAutoSaveW" ); _autoSaveValueW = new TQSpinBox(1, 60*24, 1, storagePage, "_autoSaveValueW"); _autoSaveValueW->setSuffix(i18n(" min")); |