diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2013-08-28 20:37:21 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2013-08-28 20:37:21 +0000 |
commit | 44224fcd1b9b5727d2b8e4e513ee3ad06d463752 (patch) | |
tree | 8f6b1d7132bc13644df4a5c1f6cc6dab499a8d54 | |
parent | updated TODO (diff) | |
download | gpg4usb-44224fcd1b9b5727d2b8e4e513ee3ad06d463752.tar.gz gpg4usb-44224fcd1b9b5727d2b8e4e513ee3ad06d463752.zip |
added QT_NO_DEBUG_OUTPUT and QT_NO_WARNING to gpg4usb.pro and set wizardstyle to modernstyle for mac
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@1042 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | gpg4usb.pro | 5 | ||||
-rw-r--r-- | wizard.cpp | 3 |
3 files changed, 5 insertions, 4 deletions
@@ -44,6 +44,7 @@ Release 0.4 - discuss: show message, when key export is successful (statusbar) - set focus to close dialog with unsaved data - have a look on selected/checked keys (which keys should when be used?) +- Check, ig gpg is initialized correctly BUG: - check PGP-Mime diff --git a/gpg4usb.pro b/gpg4usb.pro index 2d4ce53..63ff7a9 100644 --- a/gpg4usb.pro +++ b/gpg4usb.pro @@ -5,14 +5,15 @@ TEMPLATE = app # unix:TARGET = start_linux # win32:TARGET = start_windows -# mac:TARGET = start_mac +mac:TARGET = start_mac DESTDIR = release DEPENDPATH += . INCLUDEPATH += . #DEFINES += GPG4USB_NON_PORTABLE +DEFINES += QT_NO_DEBUG_OUTPUT QT_NO_WARNING_OUTPUT -CONFIG += release static +CONFIG += release static #CONFIG += release #CONFIG += debug @@ -38,9 +38,8 @@ Wizard::Wizard(GpgME::GpgContext *ctx, KeyMgmt *keyMgmt, QWidget *parent) setPage(Page_ImportFromGnupg,new ImportFromGnupgPage(mCtx, mKeyMgmt, this)); setPage(Page_GenKey,new KeyGenPage(mCtx, this)); setPage(Page_Conclusion,new ConclusionPage(this)); -#ifndef Q_WS_MAC + setWizardStyle(ModernStyle); -#endif setWindowTitle(tr("First Start Wizard")); // http://www.flickr.com/photos/laureenp/6141822934/ |