diff options
Diffstat (limited to 'ksmserver/shutdowndlg.cpp')
-rw-r--r-- | ksmserver/shutdowndlg.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ksmserver/shutdowndlg.cpp b/ksmserver/shutdowndlg.cpp index 6526bc4b8..e171170fa 100644 --- a/ksmserver/shutdowndlg.cpp +++ b/ksmserver/shutdowndlg.cpp @@ -1219,13 +1219,18 @@ void KSMShutdownIPDlg::hideNotificationActionButtons() m_gridlayout->invalidate(); } +void KSMShutdownIPDlg::setNotificationActionButtonsSkipText(TQString text) +{ + m_button1->setText(text); +} + KSMShutdownIPDlg::KSMShutdownIPDlg(TQWidget* parent) : KSMModalDialog( parent ) { setStatusMessage(i18n("Saving your settings...")); - m_button1->setText(i18n("Skip Notification")); + setNotificationActionButtonsSkipText(i18n("Skip Notification")); m_button2->setText(i18n("Abort Logout")); connect(m_button1, SIGNAL(clicked()), this, SIGNAL(skipNotificationClicked())); connect(m_button2, SIGNAL(clicked()), this, SIGNAL(abortLogoutClicked())); |