summaryrefslogtreecommitdiffstats
path: root/src/arkollon
diff options
context:
space:
mode:
Diffstat (limited to 'src/arkollon')
-rw-r--r--src/arkollon/Makefile.am2
-rw-r--r--src/arkollon/torkarkollon.cpp2
-rw-r--r--src/arkollon/wizard.cpp4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/arkollon/Makefile.am b/src/arkollon/Makefile.am
index ef01542..e0af4ce 100644
--- a/src/arkollon/Makefile.am
+++ b/src/arkollon/Makefile.am
@@ -26,7 +26,7 @@ torkarkollon_LDFLAGS = $(all_libraries)
LIBS =
#torkarkollon_LDFLAGS =
#torkarkollon_LDADD = $(LIB_QT) $(LIB_KFILE)
-torkarkollon_LDADD = $(LIB_KFILE) $(LIB_QT) $(LIB_KDECORE)
+torkarkollon_LDADD = $(LIB_KFILE) $(LIB_QT) $(LIB_TDECORE)
# let automoc handle all of the meta source files (moc)
METASOURCES = AUTO
diff --git a/src/arkollon/torkarkollon.cpp b/src/arkollon/torkarkollon.cpp
index fa4a3d4..c4e6c30 100644
--- a/src/arkollon/torkarkollon.cpp
+++ b/src/arkollon/torkarkollon.cpp
@@ -39,7 +39,7 @@ int main(int argc, char *argv[])
// Check if we're root
if (getuid() != 0)
{
- TQString command = "kdesu -t -i tork -n -c \"";
+ TQString command = "tdesu -t -i tork -n -c \"";
for (int i=0 ; i<app.argc() ; i++)
{
if (TQString(app.argv()[i]).contains(" "))
diff --git a/src/arkollon/wizard.cpp b/src/arkollon/wizard.cpp
index ae6b94b..ec41827 100644
--- a/src/arkollon/wizard.cpp
+++ b/src/arkollon/wizard.cpp
@@ -114,7 +114,7 @@ Wizard::Wizard(TQWidget *parent, const char *name)
kdeDirProcess = new TQProcess(this);
connect(kdeDirProcess, SIGNAL(readyReadStdout()), SLOT(kdeDirReady()));
connect(kdeDirProcess, SIGNAL(processExited()), SLOT(getInstalledComponents()));
- kdeDirProcess->addArgument("kde-config");
+ kdeDirProcess->addArgument("tde-config");
kdeDirProcess->addArgument("--prefix");
if (!kdeDirProcess->start())
getInstalledComponents();
@@ -923,7 +923,7 @@ void Wizard::errorOccured()
TQString Wizard::sub(TQString s)
{
TQString tmp = s;
- tmp.replace(TQRegExp("\\$KDEDIR"), kdeDir);
+ tmp.replace(TQRegExp("\\$TDEDIR"), kdeDir);
tmp.replace(TQRegExp("\\$HOMEDIR"), TQDir::homeDirPath());
tmp.replace(TQRegExp("~"), TQDir::homeDirPath());
tmp.replace(TQRegExp("\\$PREFIX"), "/usr/local");