From a9bde819f2b421dcc44741156e75eca4bb5fb4f4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 24 Jan 2013 13:49:30 -0600 Subject: Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4 --- kmail/kmmainwidget.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'kmail/kmmainwidget.cpp') diff --git a/kmail/kmmainwidget.cpp b/kmail/kmmainwidget.cpp index 333806868..622e70ad7 100644 --- a/kmail/kmmainwidget.cpp +++ b/kmail/kmmainwidget.cpp @@ -555,7 +555,7 @@ void KMMainWidget::createWidgets(void) TQWidget *headerParent = 0, *mimeParent = 0, *messageParent = 0; - const bool opaqueResize = KGlobalSettings::opaqueResize(); + const bool opaqueResize = TDEGlobalSettings::opaqueResize(); if ( mLongFolderList ) { // superior splitter: folder tree vs. rest // inferior splitter: headers vs. message vs. mime tree @@ -678,7 +678,7 @@ void KMMainWidget::createWidgets(void) // create list of folders mFolderViewSplitter = new TQSplitter( Qt::Vertical, mFolderViewParent ); - mFolderViewSplitter->setOpaqueResize( KGlobalSettings::opaqueResize() ); + mFolderViewSplitter->setOpaqueResize( TDEGlobalSettings::opaqueResize() ); mFavoriteFolderView = new KMail::FavoriteFolderView( this, mFolderViewSplitter ); if ( mFavoritesCheckMailAction ) connect( mFavoritesCheckMailAction, TQT_SIGNAL(activated()), mFavoriteFolderView, TQT_SLOT(checkMail()) ); @@ -1762,17 +1762,17 @@ void KMMainWidget::slotDebugSieve() //----------------------------------------------------------------------------- void KMMainWidget::slotStartCertManager() { - KProcess certManagerProc; // save to create on the heap, since + TDEProcess certManagerProc; // save to create on the heap, since // there is no parent certManagerProc << "kleopatra"; - if( !certManagerProc.start( KProcess::DontCare ) ) + if( !certManagerProc.start( TDEProcess::DontCare ) ) KMessageBox::error( this, i18n( "Could not start certificate manager; " "please check your installation." ), i18n( "KMail Error" ) ); else kdDebug(5006) << "\nslotStartCertManager(): certificate manager started.\n" << endl; - // process continues to run even after the KProcess object goes + // process continues to run even after the TDEProcess object goes // out of scope here, since it is started in DontCare run mode. } @@ -1780,10 +1780,10 @@ void KMMainWidget::slotStartCertManager() //----------------------------------------------------------------------------- void KMMainWidget::slotStartWatchGnuPG() { - KProcess certManagerProc; + TDEProcess certManagerProc; certManagerProc << "kwatchgnupg"; - if( !certManagerProc.start( KProcess::DontCare ) ) + if( !certManagerProc.start( TDEProcess::DontCare ) ) KMessageBox::error( this, i18n( "Could not start GnuPG LogViewer (kwatchgnupg); " "please check your installation." ), i18n( "KMail Error" ) ); -- cgit v1.2.1