summaryrefslogtreecommitdiffstats
path: root/src/htags.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-12-08 12:22:52 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-12-08 12:22:52 (GMT)
commit352ac919116aa49cdae48daa5d6861089ddd6055 (patch)
tree0de8bdc99b2136babd8a69eb15a127c59ef0f792 /src/htags.cpp
parent7d4f5205482b0f0212707d573c8c668a0125cc9f (diff)
downloadDoxygen-352ac919116aa49cdae48daa5d6861089ddd6055.zip
Doxygen-352ac919116aa49cdae48daa5d6861089ddd6055.tar.gz
Doxygen-352ac919116aa49cdae48daa5d6861089ddd6055.tar.bz2
Renamed Portables to Portable
Diffstat (limited to 'src/htags.cpp')
-rw-r--r--src/htags.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/htags.cpp b/src/htags.cpp
index 56840e0..1a240b1 100644
--- a/src/htags.cpp
+++ b/src/htags.cpp
@@ -89,13 +89,13 @@ bool Htags::execute(const QCString &htmldir)
QCString oldDir = QDir::currentDirPath().utf8();
QDir::setCurrent(g_inputDir.absPath());
//printf("CommandLine=[%s]\n",commandLine.data());
- Portables::sysTimerStart();
- bool result=Portables::system("htags",commandLine,FALSE)==0;
+ Portable::sysTimerStart();
+ bool result=Portable::system("htags",commandLine,FALSE)==0;
if (!result)
{
err("Problems running %s. Check your installation\n", "htags");
}
- Portables::sysTimerStop();
+ Portable::sysTimerStop();
QDir::setCurrent(oldDir);
return result;
}