From 006c5bb53f7da71de6b293a083b8411b592d109e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Fri, 4 Mar 2011 11:33:14 +0000 Subject: [PATCH] Fixed missing brackets git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@11095 383ad7c9-94d9-4d36-a494-682f7c89f535 --- OpenFlipper.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenFlipper.cc b/OpenFlipper.cc index 09204a38..cd5b5f18 100644 --- a/OpenFlipper.cc +++ b/OpenFlipper.cc @@ -433,7 +433,7 @@ int main(int argc, char **argv) #ifdef WIN32 // Set additional plugin dir for windows qt plugins - app.addLibraryPath(OpenFlipper::Options::applicationDirStr); + app.addLibraryPath(OpenFlipper::Options::applicationDirStr()); #endif return app.exec(); @@ -458,7 +458,7 @@ int main(int argc, char **argv) #ifdef WIN32 // Set additional plugin dir for windows qt plugins - app.addLibraryPath(OpenFlipper::Options::applicationDirStr); + app.addLibraryPath(OpenFlipper::Options::applicationDirStr()); #endif return app.exec(); -- GitLab