diff options
Diffstat (limited to 'kalarm/preferences.h')
-rw-r--r-- | kalarm/preferences.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kalarm/preferences.h b/kalarm/preferences.h index 4b3042d25..e7e3e90a1 100644 --- a/kalarm/preferences.h +++ b/kalarm/preferences.h @@ -63,8 +63,8 @@ class Preferences : public TQObject static bool hasStartOfDayChanged() { return mStartOfDayChanged; } static bool runInSystemTray() { return mRunInSystemTray; } static bool disableAlarmsIfStopped() { return mDisableAlarmsIfStopped; } - static bool quitWarn() { return notifying(TQUIT_WARN); } - static void setQuitWarn(bool yes) { setNotify(TQUIT_WARN, yes); } + static bool quitWarn() { return notifying(QUIT_WARN); } + static void setQuitWarn(bool yes) { setNotify(QUIT_WARN, yes); } static bool autostartTrayIcon() { return mAutostartTrayIcon; } static bool confirmAlarmDeletion() { return notifying(CONFIRM_ALARM_DELETION); } static void setConfirmAlarmDeletion(bool yes){ setNotify(CONFIRM_ALARM_DELETION, yes); } @@ -77,8 +77,8 @@ class Preferences : public TQObject static int daemonTrayCheckInterval() { return mDaemonTrayCheckInterval; } static MailClient emailClient() { return mEmailClient; } static bool emailCopyToKMail() { return mEmailCopyToKMail && mEmailClient == SENDMAIL; } - static bool emailQueuedNotify() { return notifying(EMAIL_TQUEUED_NOTIFY); } - static void setEmailQueuedNotify(bool yes) { setNotify(EMAIL_TQUEUED_NOTIFY, yes); } + static bool emailQueuedNotify() { return notifying(EMAIL_QUEUED_NOTIFY); } + static void setEmailQueuedNotify(bool yes) { setNotify(EMAIL_QUEUED_NOTIFY, yes); } static MailFrom emailFrom() { return mEmailFrom; } static bool emailBccUseControlCentre() { return mEmailBccFrom == MAIL_FROM_CONTROL_CENTRE; } static TQString emailAddress(); @@ -109,9 +109,9 @@ class Preferences : public TQObject static const TQString& defaultPostAction() { return mDefaultPostAction; } // Config file entry names for notification messages - static const TQString TQUIT_WARN; + static const TQString QUIT_WARN; static const TQString CONFIRM_ALARM_DELETION; - static const TQString EMAIL_TQUEUED_NOTIFY; + static const TQString EMAIL_QUEUED_NOTIFY; // Default values for settings static const ColourList default_messageColours; |