diff options
Diffstat (limited to 'kiten/widgets.cpp')
-rw-r--r-- | kiten/widgets.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kiten/widgets.cpp b/kiten/widgets.cpp index 05cde4f5..f7fec883 100644 --- a/kiten/widgets.cpp +++ b/kiten/widgets.cpp @@ -404,7 +404,7 @@ void eEdit::save() // find the index generator executable TDEProcess proc; - proc << KStandardDirs::findExe("kitengen") << filename << TDEGlobal::dirs()->saveLocation("data", "kiten/xjdx/", true) + TQFileInfo(filename).baseName() + ".xjdx"; + proc << TDEStandardDirs::findExe("kitengen") << filename << TDEGlobal::dirs()->saveLocation("data", "kiten/xjdx/", true) + TQFileInfo(filename).baseName() + ".xjdx"; // TODO: put up a status dialog and event loop instead of blocking proc.start(TDEProcess::Block, TDEProcess::NoCommunication); |