summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:18:03 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:18:03 -0600
commit2258bd412b615d026e3756ff0f3aa44b61551479 (patch)
treed605650d77c1fe4aa680407396264cdb229103cb
parentddccba6852223a4675d49beeb5f1e72e264aeeef (diff)
downloadadept-2258bd412b615d026e3756ff0f3aa44b61551479.tar.gz
adept-2258bd412b615d026e3756ff0f3aa44b61551479.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
-rw-r--r--adept/adept/desktoplist.cpp6
-rw-r--r--adept/adept/dpkgpm-gui.cpp20
-rw-r--r--adept/adept/dpkgpm-gui.h6
-rw-r--r--adept/adept/extendablelist.cpp4
-rw-r--r--adept/adept/groupeddesktopselector.cpp2
-rw-r--r--adept/batch/main.cpp2
-rw-r--r--adept/installer/app.cpp4
-rw-r--r--adept/installer/app.h2
-rw-r--r--adept/installer/main.cpp2
-rw-r--r--adept/kubuntu_upgrader/upgradewizard.cpp20
-rw-r--r--adept/kubuntu_upgrader/upgradewizard.h4
-rw-r--r--adept/libadept/desktoplist.cpp6
-rw-r--r--adept/libadept/dpkgpm-gui.cpp20
-rw-r--r--adept/libadept/dpkgpm-gui.h6
-rw-r--r--adept/libadept/extendablelist.cpp4
-rw-r--r--adept/libadept/groupeddesktopselector.cpp2
-rw-r--r--adept/manager/main.cpp6
-rw-r--r--adept/notifier/app.cpp22
-rw-r--r--adept/notifier/app.h4
-rw-r--r--adept/updater/main.cpp4
20 files changed, 73 insertions, 73 deletions
diff --git a/adept/adept/desktoplist.cpp b/adept/adept/desktoplist.cpp
index fe35fcd..8f89f93 100644
--- a/adept/adept/desktoplist.cpp
+++ b/adept/adept/desktoplist.cpp
@@ -74,9 +74,9 @@ void DesktopEntry::showEvent( TQShowEvent *e ) {
if ( m_polished ) return;
item()->list()->polishing();
kdDebug() << "polish for " << entity().name() << endl;
- TQImage icon( KGlobal::iconLoader()->iconPath( entity().icon(), -32, true ) );
+ TQImage icon( TDEGlobal::iconLoader()->iconPath( entity().icon(), -32, true ) );
if ( icon.isNull() ) {
- icon = TQImage( KGlobal::dirs()->findResource( "desktopicon", entity().icon() ) );
+ icon = TQImage( TDEGlobal::dirs()->findResource( "desktopicon", entity().icon() ) );
}
m_icon->setPixmap( icon.isNull() ? item()->list()->emptyIcon() :
TQPixmap( icon.smoothScale( 32, 32, TQ_ScaleMin ) ) );
@@ -148,7 +148,7 @@ DesktopList::DesktopList( TQWidget *parent, const char *name )
setExtenderHighlight( true );
m_emptyIcon = TQPixmap(
TQImage(
- KGlobal::iconLoader()->iconPath( u8( "exec" ), -32, false )
+ TDEGlobal::iconLoader()->iconPath( u8( "exec" ), -32, false )
).smoothScale( 32, 32, TQ_ScaleMin ) );
connect( this, TQT_SIGNAL( clicked( TQListViewItem *, const TQPoint &, int ) ),
this, TQT_SLOT( processClick( TQListViewItem *, const TQPoint &, int ) ) );
diff --git a/adept/adept/dpkgpm-gui.cpp b/adept/adept/dpkgpm-gui.cpp
index e21a348..5bf3d48 100644
--- a/adept/adept/dpkgpm-gui.cpp
+++ b/adept/adept/dpkgpm-gui.cpp
@@ -62,10 +62,10 @@ bool DPkgPM::forkDpkg( char *const argv[] )
l.append( argv[i] );
m_processRunning = true;
- connect( m_terminalPart, TQT_SIGNAL( processExited( KProcess * ) ),
- this, TQT_SLOT( processExit( KProcess * ) ) );
- connect( m_terminalPart, TQT_SIGNAL( processExited( const KProcess * ) ),
- this, TQT_SLOT( processExitC( const KProcess * ) ) );
+ connect( m_terminalPart, TQT_SIGNAL( processExited( TDEProcess * ) ),
+ this, TQT_SLOT( processExit( TDEProcess * ) ) );
+ connect( m_terminalPart, TQT_SIGNAL( processExited( const TDEProcess * ) ),
+ this, TQT_SLOT( processExitC( const TDEProcess * ) ) );
connect( m_terminalPart, TQT_SIGNAL( forkedChild() ),
this, TQT_SLOT( setupDpkgChild() ) );
@@ -119,10 +119,10 @@ bool DPkgPM::forkScript (const char *cmd, bool fP)
this, TQT_SLOT( setupScriptPipe() ) );
}
- connect( m_terminalPart, TQT_SIGNAL( processExited( KProcess * ) ),
- this, TQT_SLOT( processExit( KProcess * ) ) );
- connect( m_terminalPart, TQT_SIGNAL( processExited( const KProcess * ) ),
- this, TQT_SLOT( processExitC( const KProcess * ) ) );
+ connect( m_terminalPart, TQT_SIGNAL( processExited( TDEProcess * ) ),
+ this, TQT_SLOT( processExit( TDEProcess * ) ) );
+ connect( m_terminalPart, TQT_SIGNAL( processExited( const TDEProcess * ) ),
+ this, TQT_SLOT( processExitC( const TDEProcess * ) ) );
m_processRunning = true;
terminal()->startProgram( u8( "/bin/sh" ), l);
@@ -153,11 +153,11 @@ bool DPkgPM::forkScript (const char *cmd, bool fP)
}
}
-void DPkgPM::processExit(KProcess *p) {
+void DPkgPM::processExit(TDEProcess *p) {
processExitC( p );
}
-void DPkgPM::processExitC(const KProcess *p)
+void DPkgPM::processExitC(const TDEProcess *p)
{
std::cerr << "a process exited!" << std::endl;
m_processRunning = false;
diff --git a/adept/adept/dpkgpm-gui.h b/adept/adept/dpkgpm-gui.h
index 4a38e4c..03f5092 100644
--- a/adept/adept/dpkgpm-gui.h
+++ b/adept/adept/dpkgpm-gui.h
@@ -50,8 +50,8 @@ public:
virtual void updateStatus( std::string pkg, std::string ev, std::string r );
public slots:
- void processExitC(const KProcess *p);
- void processExit(KProcess *p);
+ void processExitC(const TDEProcess *p);
+ void processExit(TDEProcess *p);
void setupScriptPipe();
void setupDpkgChild();
@@ -62,7 +62,7 @@ protected:
KParts::Part *m_terminalPart;
// DPkgProgress *m_prog;
bool m_processRunning:1;
- const KProcess *m_exitedProcess;
+ const TDEProcess *m_exitedProcess;
};
}
diff --git a/adept/adept/extendablelist.cpp b/adept/adept/extendablelist.cpp
index 4c1451a..3cadcc9 100644
--- a/adept/adept/extendablelist.cpp
+++ b/adept/adept/extendablelist.cpp
@@ -288,7 +288,7 @@ void ExtendableItem::paintBranches( TQPainter *p,
{
/* if (!isAlternate())
p->setBackgroundColor(
- KGlobalSettings::alternateBackgroundColor() );
+ TDEGlobalSettings::alternateBackgroundColor() );
p->eraseRect( 0, y, w, h ); */
p->eraseRect( 0, 0, w, h );
}
@@ -308,7 +308,7 @@ static void setcolor( TQWidget *w, ExtendableItem *i ) {
w->setPaletteBackgroundColor( w->colorGroup().highlight() );
else if ( i->isAlternate() )
w->setPaletteBackgroundColor(
- KGlobalSettings::alternateBackgroundColor() );
+ TDEGlobalSettings::alternateBackgroundColor() );
else
w->setPaletteBackgroundColor( w->colorGroup().base() );
// w->setBackgroundMode( TQWidget::PaletteBase );
diff --git a/adept/adept/groupeddesktopselector.cpp b/adept/adept/groupeddesktopselector.cpp
index 5da34c0..d5e8549 100644
--- a/adept/adept/groupeddesktopselector.cpp
+++ b/adept/adept/groupeddesktopselector.cpp
@@ -101,7 +101,7 @@ void GroupedDesktopSelector::fill( component::Desktop::EntityRange r )
std::cerr << "group for " << cr->name() << ": " << r->group() << std::endl;
name = ( name != u8( "" ) ? name : u8( "Legacy" ) );
- TQPixmap icon( KGlobal::iconLoader()->iconPath(
+ TQPixmap icon( TDEGlobal::iconLoader()->iconPath(
policy() ? policy()->iconForGroup( name ) : u8( "" ), -32 ) );
TQVBox *b = addVBoxPage( name, name, icon );
diff --git a/adept/batch/main.cpp b/adept/batch/main.cpp
index d255f89..8167478 100644
--- a/adept/batch/main.cpp
+++ b/adept/batch/main.cpp
@@ -37,7 +37,7 @@ int main(int argc, char *argv[])
TDEApplication app;
TDECmdLineArgs* args = TDECmdLineArgs::parsedArgs();
- KGlobal::locale()->insertCatalogue(TQString::fromUtf8("libept"));
+ TDEGlobal::locale()->insertCatalogue(TQString::fromUtf8("libept"));
App *ta = new App( args );
diff --git a/adept/installer/app.cpp b/adept/installer/app.cpp
index 9613bf0..8ab7c48 100644
--- a/adept/installer/app.cpp
+++ b/adept/installer/app.cpp
@@ -149,7 +149,7 @@ void App::delayed() {
initialize();
cache().addComponent( new component::Desktop() );
- KGlobal::dirs()->addResourceDir(
+ TDEGlobal::dirs()->addResourceDir(
"desktopicon",
u8( INSTALLER_DATA "/icons/" ) );
@@ -364,7 +364,7 @@ void App::disableButtons() {
}
void App::editSources() {
- KProcess* softwarePropertiesProcess = new KProcess(TQT_TQOBJECT(this));
+ TDEProcess* softwarePropertiesProcess = new TDEProcess(TQT_TQOBJECT(this));
*softwarePropertiesProcess << "/usr/bin/software-properties-kde";
softwarePropertiesProcess->start();
}
diff --git a/adept/installer/app.h b/adept/installer/app.h
index 2a4af2a..2810432 100644
--- a/adept/installer/app.h
+++ b/adept/installer/app.h
@@ -19,7 +19,7 @@ class TQWidgetStack;
class TQSplitter;
class KAction;
class KPushButton;
-class KProcess;
+class TDEProcess;
namespace adept {
class AcqProgressWidget;
}
diff --git a/adept/installer/main.cpp b/adept/installer/main.cpp
index 49c245d..6795c3a 100644
--- a/adept/installer/main.cpp
+++ b/adept/installer/main.cpp
@@ -40,7 +40,7 @@ int main(int argc, char *argv[])
TDECmdLineArgs* args = TDECmdLineArgs::parsedArgs();
- KGlobal::locale()->insertCatalogue(TQString::fromUtf8("libept"));
+ TDEGlobal::locale()->insertCatalogue(TQString::fromUtf8("libept"));
App *ta = new App();
diff --git a/adept/kubuntu_upgrader/upgradewizard.cpp b/adept/kubuntu_upgrader/upgradewizard.cpp
index b692807..cc4ed77 100644
--- a/adept/kubuntu_upgrader/upgradewizard.cpp
+++ b/adept/kubuntu_upgrader/upgradewizard.cpp
@@ -151,7 +151,7 @@ bool UpgradeWizard::checkForDistUpgrade(TQString url, bool developmentVersion) {
}
bool upgrade_available = false;
- KConfig* config = KGlobal::config();
+ KConfig* config = TDEGlobal::config();
config->setGroup("General Settings");
TQString upgradeURL;
upgradeURL = config->readEntry(TQString("upgradeURL"), url);
@@ -166,12 +166,12 @@ bool UpgradeWizard::checkForDistUpgrade(TQString url, bool developmentVersion) {
// need to spawn a process to call lsb_release -c -s
// to find out which version of kubuntu we are using
- KProcess *proc = new KProcess;
+ TDEProcess *proc = new TDEProcess;
*proc << "lsb_release";
*proc << "-c" << "-s";
- connect(proc, TQT_SIGNAL( receivedStdout( KProcess*, char *, int ) ),
- this, TQT_SLOT( receiveDistroName( KProcess*, char *, int ) ) );
- proc->start( KProcess::Block, KProcess::Stdout );
+ connect(proc, TQT_SIGNAL( receivedStdout( TDEProcess*, char *, int ) ),
+ this, TQT_SLOT( receiveDistroName( TDEProcess*, char *, int ) ) );
+ proc->start( TDEProcess::Block, TDEProcess::Stdout );
current_dist = 0;
TQPtrList<DistroEntry> *entry_list = parseMetafile( temp_file_stream, distro_name );
@@ -390,7 +390,7 @@ TQPtrList<DistroEntry> *UpgradeWizard::parseMetafile( TQTextIStream *text_stream
// ** SLOTS ** //
-void UpgradeWizard::receiveDistroName( KProcess*, char *buffer, int buflen ) {
+void UpgradeWizard::receiveDistroName( TDEProcess*, char *buffer, int buflen ) {
distro_name = TQString::fromAscii( buffer, buflen-1 );
}
@@ -404,11 +404,11 @@ void UpgradeWizard::launchDistUpdater() {
//tarDirectory->copyTo(upgrade_tool_location+"-extract");
tarFile.directory()->copyTo(upgrade_tool_location+"-extract", true);
- KProcess *proc = new KProcess;
+ TDEProcess *proc = new TDEProcess;
proc->setWorkingDirectory(upgrade_tool_location+"-extract");
*proc << "python" << upgrade_tool_location+"-extract/dist-upgrade.py";
*proc << "--frontend" << "DistUpgradeViewKDE";
- proc->start( KProcess::DontCare );
+ proc->start( TDEProcess::DontCare );
// don't kill adept, it stops the app from running
// parentWidget()->close();
@@ -486,11 +486,11 @@ void UpgradeWizard::fetchUpgradeToolSig() {
void UpgradeWizard::verifyUpgradeTool() {
// spawn a process to call gpg and verify the signature
- KProcess *proc = new KProcess;
+ TDEProcess *proc = new TDEProcess;
*proc << "gpg";
*proc << "--keyring" << "/etc/apt/trusted.gpg" << "--verify" << upgrade_tool_sig_location << upgrade_tool_location;
- proc->start( KProcess::Block, KProcess::Stdout );
+ proc->start( TDEProcess::Block, TDEProcess::Stdout );
// signature verification successful if gpg exist status = 0
if( proc->exitStatus() == 0 ) {
emit killErrorDialog();
diff --git a/adept/kubuntu_upgrader/upgradewizard.h b/adept/kubuntu_upgrader/upgradewizard.h
index 889c12f..49bcc43 100644
--- a/adept/kubuntu_upgrader/upgradewizard.h
+++ b/adept/kubuntu_upgrader/upgradewizard.h
@@ -26,7 +26,7 @@
class TQString;
class TQTextIStream;
class TQDateTime;
-class KProcess;
+class TDEProcess;
class KURL;
class ErrorDialog;
@@ -63,7 +63,7 @@ public:
public slots:
/*$PUBLIC_SLOTS$*/
- void receiveDistroName( KProcess* p, char *buffer, int buflen );
+ void receiveDistroName( TDEProcess* p, char *buffer, int buflen );
void launchDistUpdater();
void fetchReleaseAnnounce();
void fetchUpgradeTool();
diff --git a/adept/libadept/desktoplist.cpp b/adept/libadept/desktoplist.cpp
index fe35fcd..8f89f93 100644
--- a/adept/libadept/desktoplist.cpp
+++ b/adept/libadept/desktoplist.cpp
@@ -74,9 +74,9 @@ void DesktopEntry::showEvent( TQShowEvent *e ) {
if ( m_polished ) return;
item()->list()->polishing();
kdDebug() << "polish for " << entity().name() << endl;
- TQImage icon( KGlobal::iconLoader()->iconPath( entity().icon(), -32, true ) );
+ TQImage icon( TDEGlobal::iconLoader()->iconPath( entity().icon(), -32, true ) );
if ( icon.isNull() ) {
- icon = TQImage( KGlobal::dirs()->findResource( "desktopicon", entity().icon() ) );
+ icon = TQImage( TDEGlobal::dirs()->findResource( "desktopicon", entity().icon() ) );
}
m_icon->setPixmap( icon.isNull() ? item()->list()->emptyIcon() :
TQPixmap( icon.smoothScale( 32, 32, TQ_ScaleMin ) ) );
@@ -148,7 +148,7 @@ DesktopList::DesktopList( TQWidget *parent, const char *name )
setExtenderHighlight( true );
m_emptyIcon = TQPixmap(
TQImage(
- KGlobal::iconLoader()->iconPath( u8( "exec" ), -32, false )
+ TDEGlobal::iconLoader()->iconPath( u8( "exec" ), -32, false )
).smoothScale( 32, 32, TQ_ScaleMin ) );
connect( this, TQT_SIGNAL( clicked( TQListViewItem *, const TQPoint &, int ) ),
this, TQT_SLOT( processClick( TQListViewItem *, const TQPoint &, int ) ) );
diff --git a/adept/libadept/dpkgpm-gui.cpp b/adept/libadept/dpkgpm-gui.cpp
index e21a348..5bf3d48 100644
--- a/adept/libadept/dpkgpm-gui.cpp
+++ b/adept/libadept/dpkgpm-gui.cpp
@@ -62,10 +62,10 @@ bool DPkgPM::forkDpkg( char *const argv[] )
l.append( argv[i] );
m_processRunning = true;
- connect( m_terminalPart, TQT_SIGNAL( processExited( KProcess * ) ),
- this, TQT_SLOT( processExit( KProcess * ) ) );
- connect( m_terminalPart, TQT_SIGNAL( processExited( const KProcess * ) ),
- this, TQT_SLOT( processExitC( const KProcess * ) ) );
+ connect( m_terminalPart, TQT_SIGNAL( processExited( TDEProcess * ) ),
+ this, TQT_SLOT( processExit( TDEProcess * ) ) );
+ connect( m_terminalPart, TQT_SIGNAL( processExited( const TDEProcess * ) ),
+ this, TQT_SLOT( processExitC( const TDEProcess * ) ) );
connect( m_terminalPart, TQT_SIGNAL( forkedChild() ),
this, TQT_SLOT( setupDpkgChild() ) );
@@ -119,10 +119,10 @@ bool DPkgPM::forkScript (const char *cmd, bool fP)
this, TQT_SLOT( setupScriptPipe() ) );
}
- connect( m_terminalPart, TQT_SIGNAL( processExited( KProcess * ) ),
- this, TQT_SLOT( processExit( KProcess * ) ) );
- connect( m_terminalPart, TQT_SIGNAL( processExited( const KProcess * ) ),
- this, TQT_SLOT( processExitC( const KProcess * ) ) );
+ connect( m_terminalPart, TQT_SIGNAL( processExited( TDEProcess * ) ),
+ this, TQT_SLOT( processExit( TDEProcess * ) ) );
+ connect( m_terminalPart, TQT_SIGNAL( processExited( const TDEProcess * ) ),
+ this, TQT_SLOT( processExitC( const TDEProcess * ) ) );
m_processRunning = true;
terminal()->startProgram( u8( "/bin/sh" ), l);
@@ -153,11 +153,11 @@ bool DPkgPM::forkScript (const char *cmd, bool fP)
}
}
-void DPkgPM::processExit(KProcess *p) {
+void DPkgPM::processExit(TDEProcess *p) {
processExitC( p );
}
-void DPkgPM::processExitC(const KProcess *p)
+void DPkgPM::processExitC(const TDEProcess *p)
{
std::cerr << "a process exited!" << std::endl;
m_processRunning = false;
diff --git a/adept/libadept/dpkgpm-gui.h b/adept/libadept/dpkgpm-gui.h
index 4a38e4c..03f5092 100644
--- a/adept/libadept/dpkgpm-gui.h
+++ b/adept/libadept/dpkgpm-gui.h
@@ -50,8 +50,8 @@ public:
virtual void updateStatus( std::string pkg, std::string ev, std::string r );
public slots:
- void processExitC(const KProcess *p);
- void processExit(KProcess *p);
+ void processExitC(const TDEProcess *p);
+ void processExit(TDEProcess *p);
void setupScriptPipe();
void setupDpkgChild();
@@ -62,7 +62,7 @@ protected:
KParts::Part *m_terminalPart;
// DPkgProgress *m_prog;
bool m_processRunning:1;
- const KProcess *m_exitedProcess;
+ const TDEProcess *m_exitedProcess;
};
}
diff --git a/adept/libadept/extendablelist.cpp b/adept/libadept/extendablelist.cpp
index 16ebb96..d6471ba 100644
--- a/adept/libadept/extendablelist.cpp
+++ b/adept/libadept/extendablelist.cpp
@@ -281,7 +281,7 @@ void ExtendableItem::paintBranches( TQPainter *p,
{
/* if (!isAlternate())
p->setBackgroundColor(
- KGlobalSettings::alternateBackgroundColor() );
+ TDEGlobalSettings::alternateBackgroundColor() );
p->eraseRect( 0, y, w, h ); */
p->eraseRect( 0, 0, w, h );
}
@@ -301,7 +301,7 @@ static void setcolor( TQWidget *w, ExtendableItem *i ) {
w->setPaletteBackgroundColor( w->colorGroup().highlight() );
else if ( i->isAlternate() )
w->setPaletteBackgroundColor(
- KGlobalSettings::alternateBackgroundColor() );
+ TDEGlobalSettings::alternateBackgroundColor() );
else
w->setPaletteBackgroundColor( w->colorGroup().base() );
// w->setBackgroundMode( TQWidget::PaletteBase );
diff --git a/adept/libadept/groupeddesktopselector.cpp b/adept/libadept/groupeddesktopselector.cpp
index 5da34c0..d5e8549 100644
--- a/adept/libadept/groupeddesktopselector.cpp
+++ b/adept/libadept/groupeddesktopselector.cpp
@@ -101,7 +101,7 @@ void GroupedDesktopSelector::fill( component::Desktop::EntityRange r )
std::cerr << "group for " << cr->name() << ": " << r->group() << std::endl;
name = ( name != u8( "" ) ? name : u8( "Legacy" ) );
- TQPixmap icon( KGlobal::iconLoader()->iconPath(
+ TQPixmap icon( TDEGlobal::iconLoader()->iconPath(
policy() ? policy()->iconForGroup( name ) : u8( "" ), -32 ) );
TQVBox *b = addVBoxPage( name, name, icon );
diff --git a/adept/manager/main.cpp b/adept/manager/main.cpp
index 3d6709e..3320b1d 100644
--- a/adept/manager/main.cpp
+++ b/adept/manager/main.cpp
@@ -41,12 +41,12 @@ int main(int argc, char *argv[])
TDECmdLineArgs* args = TDECmdLineArgs::parsedArgs();
// if (args && args->isSet("xy")) ...
- /* KConfig* config = KGlobal::config();
+ /* KConfig* config = TDEGlobal::config();
config->setGroup("General Settings");
TQString version = config->readEntry("Version"); */
- KGlobal::locale()->insertCatalogue(TQString::fromUtf8("libept"));
- KGlobal::locale()->insertCatalogue(TQString::fromUtf8("libapt-front"));
+ TDEGlobal::locale()->insertCatalogue(TQString::fromUtf8("libept"));
+ TDEGlobal::locale()->insertCatalogue(TQString::fromUtf8("libapt-front"));
TestApp *ta = new TestApp();
diff --git a/adept/notifier/app.cpp b/adept/notifier/app.cpp
index 1107af4..40a786f 100644
--- a/adept/notifier/app.cpp
+++ b/adept/notifier/app.cpp
@@ -162,10 +162,10 @@ NotifierApp::NotifierApp(bool allowStyles, bool GUIenabled)
m_dirWatch->addDir(TQString("/var/crash"));
connect( m_dirWatch, TQT_SIGNAL( dirty(const TQString&) ), this, TQT_SLOT( crashWatcher() ) );
- KProcess *proc = new KProcess;
+ TDEProcess *proc = new TDEProcess;
*proc << "/usr/share/apport/apport-checkreports";
- connect( proc, TQT_SIGNAL(processExited(KProcess*)), this, TQT_SLOT(apportCheckExited(KProcess*)) );
- proc->start(KProcess::Block);
+ connect( proc, TQT_SIGNAL(processExited(TDEProcess*)), this, TQT_SLOT(apportCheckExited(TDEProcess*)) );
+ proc->start(TDEProcess::Block);
if (m_crashes) {
ApportTrayWindow* crashApplet = new ApportTrayWindow;
@@ -194,24 +194,24 @@ NotifierApp::NotifierApp(bool allowStyles, bool GUIenabled)
void NotifierApp::crashWatcher() {
// find out if there are system crash reports first, if there are run it as root
- KProcess *proc = new KProcess;
+ TDEProcess *proc = new TDEProcess;
*proc << "/usr/share/apport/apport-checkreports";
*proc << "--system";
- connect( proc, TQT_SIGNAL(processExited(KProcess*)), this, TQT_SLOT(apportCheckExited(KProcess*)) );
- proc->start(KProcess::Block);
+ connect( proc, TQT_SIGNAL(processExited(TDEProcess*)), this, TQT_SLOT(apportCheckExited(TDEProcess*)) );
+ proc->start(TDEProcess::Block);
if (m_crashes) {
- KProcess *proc2 = new KProcess;
+ TDEProcess *proc2 = new TDEProcess;
*proc2 << "tdesu" << "/usr/share/apport/apport-qt";
- proc2->start(KProcess::DontCare);
+ proc2->start(TDEProcess::DontCare);
} else {
KShellProcess *proc2 = new KShellProcess;
*proc2 << "sleep 1; /usr/share/apport/apport-qt"; //needs a seconds delay else we're too fast for apport
- proc2->start(KProcess::DontCare);
+ proc2->start(TDEProcess::DontCare);
}
}
-void NotifierApp::apportCheckExited(KProcess* proc) {
+void NotifierApp::apportCheckExited(TDEProcess* proc) {
if (proc->exitStatus() == 0) {
m_crashes = true;
} else {
@@ -246,7 +246,7 @@ void NotifierApp::rebootClicked() {
kdDebug() << "NotifierApp::rebootClicked" << endl;
if (KMessageBox::questionYesNo(0, TQString("In order to complete the update your system needs to be restarted."), TQString("Restart Require")) == KMessageBox::Yes) {
kdDebug() << "NotifierApp::rebootClicked yes!" << endl;
- KProcess *proc = new KProcess;
+ TDEProcess *proc = new TDEProcess;
*proc << "/usr/bin/dcop";
*proc << "ksmserver" << "ksmserver" << "logout" << "0" << "1" << "2"; // 0 1 2 == ShutdownConfirmNo ShutdownTypeReboot ShutdownModeForceNow
proc->start();
diff --git a/adept/notifier/app.h b/adept/notifier/app.h
index 6e3f169..6efdf36 100644
--- a/adept/notifier/app.h
+++ b/adept/notifier/app.h
@@ -9,7 +9,7 @@
class TQWidget;
class KAction;
-// class KGlobalAccel;
+// class TDEGlobalAccel;
// the status indicator in system tray
class TrayWindow : public KSystemTray
@@ -80,7 +80,7 @@ protected slots:
void about();
// for apport
void crashWatcher();
- void apportCheckExited(KProcess*);
+ void apportCheckExited(TDEProcess*);
void rebootWatcher(const TQString& path);
void rebootClicked();
diff --git a/adept/updater/main.cpp b/adept/updater/main.cpp
index 804596a..9429552 100644
--- a/adept/updater/main.cpp
+++ b/adept/updater/main.cpp
@@ -41,11 +41,11 @@ int main(int argc, char *argv[])
TDECmdLineArgs* args = TDECmdLineArgs::parsedArgs();
// if (args && args->isSet("xy")) ...
- /* KConfig* config = KGlobal::config();
+ /* KConfig* config = TDEGlobal::config();
config->setGroup("General Settings");
TQString version = config->readEntry("Version"); */
- KGlobal::locale()->insertCatalogue(TQString::fromUtf8("libept"));
+ TDEGlobal::locale()->insertCatalogue(TQString::fromUtf8("libept"));
TestApp *ta = new TestApp();