aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2009-09-08 19:01:33 -0300
committerHugo Lima <hugo.lima@openbossa.org>2009-09-08 19:01:33 -0300
commite5f356b6f65cd58b682fdbc3247740945bd0b268 (patch)
tree6c99876ff24d8ac67baf81acd3e6c818cf14778f /main.cpp
parent23281d9afef0b1f0972458dbc84f48fd186e435e (diff)
Fix typo: GENERATORRUNNER_PUGIN_DIR => GENERATORRUNNER_PLUGIN_DIR
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 350fdaa4b..33b598af3 100644
--- a/main.cpp
+++ b/main.cpp
@@ -124,7 +124,7 @@ int main(int argc, char *argv[])
if (generatorSet.contains(QDir::separator()))
generatorFile = generatorSet;
else
- generatorFile = QString(GENERATORRUNNER_PUGIN_DIR) + "/lib" + generatorSet + "_generator";
+ generatorFile = QString(GENERATORRUNNER_PLUGIN_DIR) + "/lib" + generatorSet + "_generator";
QLibrary plugin(generatorFile);
getGeneratorsFunc getGenerators = reinterpret_cast<getGeneratorsFunc>(plugin.resolve("getGenerators"));