summaryrefslogtreecommitdiffstats
path: root/smb4k
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-20 00:00:58 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-20 00:00:58 -0600
commit1ab85b146efd667be570929ae7fb2b162af0ef0c (patch)
treee08adc17bbe761d0f0ccb0a197f57e2e08e66e52 /smb4k
parentdb480047d0ad5a6939a8591b76a6827b851cb030 (diff)
downloadsmb4k-1ab85b146efd667be570929ae7fb2b162af0ef0c.tar.gz
smb4k-1ab85b146efd667be570929ae7fb2b162af0ef0c.zip
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'smb4k')
-rw-r--r--smb4k/core/smb4kcore.h2
-rw-r--r--smb4k/core/smb4kfileio.h2
-rw-r--r--smb4k/core/smb4kmounter.h4
-rw-r--r--smb4k/core/smb4ksynchronizer.h2
-rw-r--r--smb4k/smb4k.cpp10
5 files changed, 10 insertions, 10 deletions
diff --git a/smb4k/core/smb4kcore.h b/smb4k/core/smb4kcore.h
index 5d6c154..e49b4db 100644
--- a/smb4k/core/smb4kcore.h
+++ b/smb4k/core/smb4kcore.h
@@ -247,7 +247,7 @@ class Smb4KCore : public TQObject
void slotSetPreviewerState( int state );
/**
- * This slot is connected to the KApplication::shutDown() signal. It is invoked
+ * This slot is connected to the TDEApplication::shutDown() signal. It is invoked
* when the application is shut down by the KDE logout or by pressing CTRL+Q, etc.
*/
void slotShutdown();
diff --git a/smb4k/core/smb4kfileio.h b/smb4k/core/smb4kfileio.h
index 8411642..c6b589c 100644
--- a/smb4k/core/smb4kfileio.h
+++ b/smb4k/core/smb4kfileio.h
@@ -121,7 +121,7 @@ class Smb4KFileIO : public TQObject
protected slots:
/**
* This slot is invokes when the application is closed. It is connected
- * to KApplication::shutDown().
+ * to TDEApplication::shutDown().
*/
void slotShutdown();
diff --git a/smb4k/core/smb4kmounter.h b/smb4k/core/smb4kmounter.h
index dd151d6..968b2c5 100644
--- a/smb4k/core/smb4kmounter.h
+++ b/smb4k/core/smb4kmounter.h
@@ -165,7 +165,7 @@ class Smb4KMounter : public TQObject
/**
* This function executes Smb4KMounter::slotShutdown(). Under normal circumstances,
* there is no need to use this function, because everything that is done here is
- * also done when KApplication::shutDown() is emitted. However, it comes in handy
+ * also done when TDEApplication::shutDown() is emitted. However, it comes in handy
* when you need to perform last actions in a plugin.
*/
void prepareForShutdown();
@@ -250,7 +250,7 @@ class Smb4KMounter : public TQObject
void slotReceivedStderr( KProcess *, char *buf, int len );
/**
- * This slot is called by the KApplication::shutDown() signal.
+ * This slot is called by the TDEApplication::shutDown() signal.
* Is does everything that has to be done before the program
* really exits.
*/
diff --git a/smb4k/core/smb4ksynchronizer.h b/smb4k/core/smb4ksynchronizer.h
index c4ebc44..80ddc55 100644
--- a/smb4k/core/smb4ksynchronizer.h
+++ b/smb4k/core/smb4ksynchronizer.h
@@ -155,7 +155,7 @@ class Smb4KSynchronizer : public TQObject
void slotReceivedStderr( KProcess *proc, char *buf, int len );
/**
- * This slot is connected to KApplication::shutDown() signal.
+ * This slot is connected to TDEApplication::shutDown() signal.
* It aborts the running KProcess if necessary.
*/
void slotShutdown();
diff --git a/smb4k/smb4k.cpp b/smb4k/smb4k.cpp
index fe276f3..a0c90a2 100644
--- a/smb4k/smb4k.cpp
+++ b/smb4k/smb4k.cpp
@@ -268,7 +268,7 @@ void Smb4KApp::setupView()
{
KMessageBox::error( 0, "<qt>"+KLibLoader::self()->lastErrorMessage()+"</qt>" );
- KApplication::exit( 0 );
+ TDEApplication::exit( 0 );
return;
}
@@ -297,7 +297,7 @@ void Smb4KApp::setupView()
{
KMessageBox::error( 0, "<qt>"+KLibLoader::self()->lastErrorMessage()+"</qt>" );
- KApplication::exit( 0 );
+ TDEApplication::exit( 0 );
return;
}
@@ -336,7 +336,7 @@ void Smb4KApp::setupView()
{
KMessageBox::error( 0, "<qt>"+KLibLoader::self()->lastErrorMessage()+"</qt>" );
- KApplication::exit( 0 );
+ TDEApplication::exit( 0 );
return;
}
@@ -421,7 +421,7 @@ void Smb4KApp::changeSharesView()
{
KMessageBox::error( 0, "<qt>"+KLibLoader::self()->lastErrorMessage()+"</qt>" );
- KApplication::exit( 0 );
+ TDEApplication::exit( 0 );
return;
}
@@ -500,7 +500,7 @@ void Smb4KApp::slotQuit()
m_system_tray->embed( false );
}
- KApplication::exit( 0 );
+ TDEApplication::exit( 0 );
}