From d2404156711cbf95e2306104e63e176ba411330a Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Sat, 30 Aug 2014 11:05:34 +0200 Subject: Make crash reporter logo branded --- OWNCLOUD.cmake | 1 + src/crashreporter/CrashReporterConfig.h.in | 2 ++ src/crashreporter/main.cpp | 4 +++- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/OWNCLOUD.cmake b/OWNCLOUD.cmake index 44edd3ded..b45249683 100644 --- a/OWNCLOUD.cmake +++ b/OWNCLOUD.cmake @@ -13,3 +13,4 @@ set( WIN_SETUP_BITMAP_PATH "${CMAKE_SOURCE_DIR}/admin/win/nsi" ) option( WITH_CRASHREPORTER "Build crashreporter" OFF ) set( CRASHREPORTER_SUBMIT_URL "https://crash-reports.owncloud.org/submit" CACHE string "URL for crash repoter" ) +set( CRASHREPORTER_ICON ":/owncloud-icon.png" ) diff --git a/src/crashreporter/CrashReporterConfig.h.in b/src/crashreporter/CrashReporterConfig.h.in index 1fa026d5d..14f937be9 100644 --- a/src/crashreporter/CrashReporterConfig.h.in +++ b/src/crashreporter/CrashReporterConfig.h.in @@ -11,4 +11,6 @@ #define CRASHREPORTER_SUBMIT_URL "@CRASHREPORTER_SUBMIT_URL@" +#define CRASHREPORTER_ICON "@CRASHREPORTER_ICON@" + #endif // CRASHREPORTERCONFIG_H diff --git a/src/crashreporter/main.cpp b/src/crashreporter/main.cpp index 6471fa91e..048b9ff0b 100644 --- a/src/crashreporter/main.cpp +++ b/src/crashreporter/main.cpp @@ -33,7 +33,9 @@ int main( int argc, char* argv[] ) // TODO: install socorro .... CrashReporter reporter( QUrl( CRASHREPORTER_SUBMIT_URL ), app.arguments() ); - reporter.setLogo(QPixmap(":/owncloud-icon.png")); +#ifdef CRASHREPORTER_ICON + reporter.setLogo(QPixmap(CRASHREPORTER_ICON)); +#endif reporter.setWindowTitle(CRASHREPORTER_PRODUCT_NAME); reporter.setText("

Sorry! " CRASHREPORTER_PRODUCT_NAME " crashed. Please tell us about it! " CRASHREPORTER_PRODUCT_NAME " has created an error report for you that can help improve the stability in the future. You can now send this report directly to the " CRASHREPORTER_PRODUCT_NAME " developers.

"); -- cgit v1.2.3