diff options
-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/ |