From 805944eab9e9bb3c4d7c6bf2c8af522678d3d16b Mon Sep 17 00:00:00 2001 From: Peinthor Rene Date: Sun, 31 Mar 2013 10:15:25 +0200 Subject: [PATCH] fix compile error on mac --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 79855ea7..34d5d180 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -57,7 +57,7 @@ static pascal OSErr odocHandler(const AppleEvent* inEvent, AppleEvent* char buf[1024]; err = FSRefMakePath(&ref, reinterpret_cast(buf), 1024); if ( err == noErr ) - reinterpret_cast(refCon)->fileOpen(QString::fromUtf8(buf)); + reinterpret_cast(refCon)->fileOpen(QString::fromUtf8(buf)); } } }