diff options
author | Timothy Pearson <[email protected]> | 2012-01-22 00:28:18 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-22 00:28:18 -0600 |
commit | 7021f40c13f949b7cb5ded32d0241d648a43bf6c (patch) | |
tree | aa1a5e4de2963edc6638783246b2ff25e98833aa /kdm/kfrontend/kgdialog.cpp | |
parent | 0a2a54a02254ded760afd5b9c965c6bb71459d46 (diff) | |
download | tdebase-7021f40c13f949b7cb5ded32d0241d648a43bf6c.tar.gz tdebase-7021f40c13f949b7cb5ded32d0241d648a43bf6c.zip |
Part 1 of 2 of kdm rename
Diffstat (limited to 'kdm/kfrontend/kgdialog.cpp')
-rw-r--r-- | kdm/kfrontend/kgdialog.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kdm/kfrontend/kgdialog.cpp b/kdm/kfrontend/kgdialog.cpp index f4ed918c6..667eca8e1 100644 --- a/kdm/kfrontend/kgdialog.cpp +++ b/kdm/kfrontend/kgdialog.cpp @@ -1,6 +1,6 @@ /* -Base class for various kdm greeter dialogs +Base class for various tdm greeter dialogs Copyright (C) 1997, 1998 Steffen Hansen <[email protected]> Copyright (C) 2000-2004 Oswald Buddenhagen <[email protected]> @@ -25,8 +25,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include "kgdialog.h" #include "kgverify.h" #include "kconsole.h" -#include "kdmshutdown.h" -#include "kdm_greet.h" +#include "tdmshutdown.h" +#include "tdm_greet.h" #include <klocale.h> #include <kiconloader.h> @@ -41,7 +41,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. KGDialog::KGDialog( bool themed ) : inherited( 0, !themed ) { -#ifdef WITH_KDM_XCONSOLE +#ifdef WITH_TDM_XCONSOLE consoleView = _showLog ? new KConsole( this ) : 0; #endif @@ -171,7 +171,7 @@ KGDialog::slotConsole() if (sess) { if (verify) verify->suspend(); - int ret = KDMConfShutdown( -1, sess, SHUT_CONSOLE, 0 ).exec(); + int ret = TDMConfShutdown( -1, sess, SHUT_CONSOLE, 0 ).exec(); if (verify) verify->resume(); disposeSessions( sess ); @@ -194,11 +194,11 @@ KGDialog::slotShutdown( int id ) verify->suspend(); if (id < 0) { if (_scheduledSd == SHUT_ALWAYS) - KDMShutdown::scheduleShutdown( this ); + TDMShutdown::scheduleShutdown( this ); else - KDMSlimShutdown( this ).exec(); + TDMSlimShutdown( this ).exec(); } else - KDMSlimShutdown::externShutdown( id, 0, -1 ); + TDMSlimShutdown::externShutdown( id, 0, -1 ); if (verify) verify->resume(); } |