Browse Source

Don't use deprecated KUrl::fromPathOrUrl.

git-svn-id: file:///var/svn/tigccpp/trunk@997 9552661e-59e3-4036-b4f2-dbe53926924f
kevinkofler 17 years ago
parent
commit
0f068668c8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ktigcc/toolprops.cpp

+ 1 - 1
ktigcc/toolprops.cpp

@@ -37,7 +37,7 @@ void ToolProperties::init()
     toolTitle->setText(tool.title);
     toolTitle->setText(tool.title);
     commandLine->setText(tool.commandLine);
     commandLine->setText(tool.commandLine);
     if (!tool.workingDirectory.isEmpty())
     if (!tool.workingDirectory.isEmpty())
-      workingDirectory->setUrl(KUrl::fromPathOrUrl(tool.workingDirectory));
+      workingDirectory->setUrl(KUrl(tool.workingDirectory));
     runInTerminal->setChecked(tool.runInTerminal);
     runInTerminal->setChecked(tool.runInTerminal);
   }
   }
 }
 }