summaryrefslogtreecommitdiffstats
path: root/kiten/rad.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:03:10 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:03:10 -0600
commit782ea254f2b2cc59c01c9fa9c26df3262b05648a (patch)
treeea2570417efdc330ee127513e1ca90180ab59311 /kiten/rad.cpp
parentc7c2e1330f7496d86e25cd9e408ae9f62f2d9bcb (diff)
downloadtdeedu-782ea254f2b2cc59c01c9fa9c26df3262b05648a.tar.gz
tdeedu-782ea254f2b2cc59c01c9fa9c26df3262b05648a.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kiten/rad.cpp')
-rw-r--r--kiten/rad.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kiten/rad.cpp b/kiten/rad.cpp
index 20fbeae3..8c56fadc 100644
--- a/kiten/rad.cpp
+++ b/kiten/rad.cpp
@@ -20,7 +20,7 @@
**/
#include <kapplication.h>
-#include <kconfig.h>
+#include <tdeconfig.h>
#include <kdebug.h>
#include <kdialog.h>
#include <klistbox.h>
@@ -52,14 +52,14 @@ void Rad::load()
return;
KStandardDirs *dirs = TDEGlobal::dirs();
- TQString radkfile = dirs->findResource("data", "kiten/radkfile");
- if (radkfile.isNull())
+ TQString radtdefile = dirs->findResource("data", "kiten/radtdefile");
+ if (radtdefile.isNull())
{
KMessageBox::error(0, i18n("Kanji radical information file not installed, so radical searching cannot be used."));
return;
}
- TQFile f(radkfile);
+ TQFile f(radtdefile);
if (!f.open(IO_ReadOnly))
{