summaryrefslogtreecommitdiffstats
path: root/src/configuration.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-22 23:40:14 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-22 23:40:14 +0900
commit3b8c44efa380ea0840e94aca67ca4327a7f0bf9a (patch)
treeab7d01303b0f93d9e92b9b754d57911caaf9f508 /src/configuration.cpp
parent7665c8d3f798aaf287ff14a35af74d9c303cb20c (diff)
downloadkommando-3b8c44efa380ea0840e94aca67ca4327a7f0bf9a.tar.gz
kommando-3b8c44efa380ea0840e94aca67ca4327a7f0bf9a.zip
Raw KDE->TDE conversion using tde/scripts/conversions/kde-tde/convert_existing_kde3_app_to_tde
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/configuration.cpp')
-rw-r--r--src/configuration.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp
index 99b4ff9..4d47965 100644
--- a/src/configuration.cpp
+++ b/src/configuration.cpp
@@ -37,7 +37,7 @@ Config::Config()
kdDebug() << "kommandorc located: " << mConfigPath << endl;
if (mConfigPath.isNull() || !TQFile::exists(mConfigPath)){ //test for new config file
- kdDebug() << "There is no kommandorc in kdedirs" << endl;
+ kdDebug() << "There is no kommandorc in tdedirs" << endl;
mConfigPath = locateLocal("data", "kommando/kommandorc");
if(TQFile::exists(KShell::homeDir("")+"/.kommandorc")){ //tries old config file
@@ -222,7 +222,7 @@ void Config::toKommandoMenu(Kommando* buttonParent)
if(it != defaultMenu){
SubmenuButton* button = new SubmenuButton(buttonParent,defaultMenu,mMenuButtonSize);
button->hide();
- button->setIcon("up");
+ button->setIcon("go-up");
//This registers the button with the Menu, but does not add it to its child List
//Doing so would cause the menu to delete the default menu, which already deletes itsself
it->insertNoChild(button);