diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:14:12 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:14:12 -0600 |
commit | fd5d099065a748cac49e20a13481f85666c53c71 (patch) | |
tree | a0f1672cd88eb0e69b9ddc2ed9b08ecd98538bd3 /kmail/secondarywindow.cpp | |
parent | b440a9c608596cd88efdb3bfa4661c5e37efbe4b (diff) | |
download | tdepim-fd5d099065a748cac49e20a13481f85666c53c71.tar.gz tdepim-fd5d099065a748cac49e20a13481f85666c53c71.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kmail/secondarywindow.cpp')
-rw-r--r-- | kmail/secondarywindow.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmail/secondarywindow.cpp b/kmail/secondarywindow.cpp index d2296f435..38f6b32dc 100644 --- a/kmail/secondarywindow.cpp +++ b/kmail/secondarywindow.cpp @@ -39,7 +39,7 @@ namespace KMail { //--------------------------------------------------------------------------- SecondaryWindow::SecondaryWindow( const char * name ) - : KMainWindow( 0, name ) + : TDEMainWindow( 0, name ) { // Set this to be the group leader for all subdialogs - this means // modal subdialogs will only affect this window, not the other windows @@ -62,7 +62,7 @@ namespace KMail { // if there's a system tray applet then just do what needs to be done if a // window is closed. if ( kmkernel->haveSystemTrayApplet() ) { - // BEGIN of code borrowed from KMainWindow::closeEvent + // BEGIN of code borrowed from TDEMainWindow::closeEvent // Save settings if auto-save is enabled, and settings have changed if ( settingsDirty() && autoSaveSettings() ) saveAutoSaveSettings(); @@ -70,10 +70,10 @@ namespace KMail { if ( queryClose() ) { e->accept(); } - // END of code borrowed from KMainWindow::closeEvent + // END of code borrowed from TDEMainWindow::closeEvent } else - KMainWindow::closeEvent( e ); + TDEMainWindow::closeEvent( e ); } } // namespace KMail |