summaryrefslogtreecommitdiffstats
path: root/smb4k
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:23:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:23:21 -0600
commitb1c6ea23c4e7f1939dcade2b86c31c864a2e4e6b (patch)
tree67db2e50a264645d1991043917e1d1c91da30d2b /smb4k
parentb30f13d4c850f51159dc701d0e390657486e9fcb (diff)
downloadsmb4k-b1c6ea23c4e7f1939dcade2b86c31c864a2e4e6b.tar.gz
smb4k-b1c6ea23c4e7f1939dcade2b86c31c864a2e4e6b.zip
Additional kde to tde renaming
Diffstat (limited to 'smb4k')
-rw-r--r--smb4k/Makefile.am2
-rw-r--r--smb4k/core/smb4kfileio.cpp16
-rw-r--r--smb4k/core/smb4kpasswordhandler.cpp2
3 files changed, 10 insertions, 10 deletions
diff --git a/smb4k/Makefile.am b/smb4k/Makefile.am
index 80422b9..39c9129 100644
--- a/smb4k/Makefile.am
+++ b/smb4k/Makefile.am
@@ -9,7 +9,7 @@ bin_PROGRAMS = smb4k
smb4k_SOURCES = main.cpp smb4k.cpp smb4ksystemtray.cpp
smb4k_LDADD = $(top_builddir)/smb4k/core/libsmb4kcore.la \
$(top_builddir)/smb4k/dialogs/libsmb4kdialogs.la $(LIB_KDECORE) $(LIB_KDEUI) $(LIB_KFILE) $(LIB_KPARTS) $(LIB_QT)
-smb4k_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
+smb4k_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
KDE_ICON = smb4k
diff --git a/smb4k/core/smb4kfileio.cpp b/smb4k/core/smb4kfileio.cpp
index 9b42709..1a365a3 100644
--- a/smb4k/core/smb4kfileio.cpp
+++ b/smb4k/core/smb4kfileio.cpp
@@ -375,11 +375,11 @@ bool Smb4KFileIO::writeSudoers( Smb4KFileIO::Operation operation )
{
// The user does not have enough access rights to perform
// the modification of the sudoers file. So, we need to use
- // kdesu to get the contents of the file.
+ // tdesu to get the contents of the file.
// Compose the command:
TQString command;
- command.append( "kdesu -t -c \"smb4k_cat " );
+ command.append( "tdesu -t -c \"smb4k_cat " );
command.append( canonical_path+"\"" );
command.append( " ; sleep 2" );
@@ -728,11 +728,11 @@ bool Smb4KFileIO::writeSuperTab( Smb4KFileIO::Operation operation )
{
// The user does not have enough access rights to perform
// the modification of the sudoers file. So, we need to use
- // kdesu to get the contents of the file.
+ // tdesu to get the contents of the file.
// Compose the command:
TQString command;
- command.append( "kdesu -t -c \"smb4k_cat " );
+ command.append( "tdesu -t -c \"smb4k_cat " );
command.append( canonical_path+"\"" );
command.append( " ; sleep 2" );
@@ -1184,7 +1184,7 @@ void Smb4KFileIO::processSudoers()
{
// If the output buffer is empty, we stop, because
// that most likely means, the user cancelled the
- // kdesu dialog.
+ // tdesu dialog.
if ( m_buffer.stripWhiteSpace().isEmpty() )
{
emit failed();
@@ -1411,7 +1411,7 @@ void Smb4KFileIO::processSudoers()
// Assemble the command.
TQString command;
- command.append( "kdesu -n -c \"smb4k_mv "+owner+":"+group+" "+perms+" " );
+ command.append( "tdesu -n -c \"smb4k_mv "+owner+":"+group+" "+perms+" " );
command.append( temp_file_name+" " );
command.append( canonical_path+"\" ; " );
command.append( "rm -f "+temp_file_name );
@@ -1436,7 +1436,7 @@ void Smb4KFileIO::processSuperTab()
{
// If the output buffer is empty, we stop, because
// that most likely means, the user cancelled the
- // kdesu dialog.
+ // tdesu dialog.
if ( m_buffer.stripWhiteSpace().isEmpty() )
{
emit failed();
@@ -1674,7 +1674,7 @@ void Smb4KFileIO::processSuperTab()
// Assemble the command.
TQString command;
- command.append( "kdesu -n -c \"smb4k_mv "+owner+":"+group+" "+perms+" " );
+ command.append( "tdesu -n -c \"smb4k_mv "+owner+":"+group+" "+perms+" " );
command.append( temp_file_name+" " );
command.append( canonical_path+"\" ; " );
command.append( "rm -f "+temp_file_name );
diff --git a/smb4k/core/smb4kpasswordhandler.cpp b/smb4k/core/smb4kpasswordhandler.cpp
index e3624ee..7d0eb5c 100644
--- a/smb4k/core/smb4kpasswordhandler.cpp
+++ b/smb4k/core/smb4kpasswordhandler.cpp
@@ -111,7 +111,7 @@ void Smb4KPasswordHandler::open_close_wallet()
// error handling here.
if ( kapp )
{
- (void) kapp->kdeinitExec( "kwalletmanager" );
+ (void) kapp->tdeinitExec( "kwalletmanager" );
}
else
{