Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dschmidt/libcrashreporter-qt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorUwe L. Korn <uwelk@xhochy.com>2014-06-02 13:46:55 +0400
committerUwe L. Korn <uwelk@xhochy.com>2014-06-02 13:46:55 +0400
commit35d889e92fd87909b1104ec40da4b1e68b1597a1 (patch)
tree3fffc9034f51faf22dfa6a20a317204214542af4 /src
parent6a449f27d1bb4ad2889abbd66ec80b4ca1df3af1 (diff)
Add missing semicolon
Diffstat (limited to 'src')
-rw-r--r--src/libcrashreporter-handler/Handler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcrashreporter-handler/Handler.cpp b/src/libcrashreporter-handler/Handler.cpp
index 628baf8..8ef224f 100644
--- a/src/libcrashreporter-handler/Handler.cpp
+++ b/src/libcrashreporter-handler/Handler.cpp
@@ -178,7 +178,7 @@ Handler::Handler( const QString& dumpFolderPath, bool active, const QString& cra
#if defined Q_OS_LINUX
m_crash_handler = new google_breakpad::ExceptionHandler( google_breakpad::MinidumpDescriptor(dumpFolderPath.toStdString()), NULL, LaunchUploader, this, true, -1 );
#elif defined Q_OS_MAC
- m_crash_handler = new google_breakpad::ExceptionHandler( dumpFolderPath.toStdString(), NULL, LaunchUploader, this, true, NULL)
+ m_crash_handler = new google_breakpad::ExceptionHandler( dumpFolderPath.toStdString(), NULL, LaunchUploader, this, true, NULL);
#elif defined Q_OS_WIN
// m_crash_handler = new google_breakpad::ExceptionHandler( dumpFolderPath.toStdString(), 0, LaunchUploader, this, true, 0 );
m_crash_handler = new google_breakpad::ExceptionHandler( dumpFolderPath.toStdWString(), 0, LaunchUploader, this, true, 0 );