Changeset 369:662fcac45aef in SMSSender
- Timestamp:
- Apr 14, 2014 11:31:53 AM (7 years ago)
- Branch:
- separation-frontend-backend
- Files:
-
- 1 deleted
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
common/global.h
r316 r369 22 22 23 23 #if defined(COMMON_LIBRARY) 24 # define COMMON_EXPORT 25 //# define COMMON_EXPORT Q_DECL_EXPORT 24 # define COMMON_EXPORT Q_DECL_EXPORT 26 25 #else 27 # define COMMON_EXPORT 28 //# define COMMON_EXPORT Q_DECL_IMPORT 26 # define COMMON_EXPORT Q_DECL_IMPORT 29 27 #endif 30 28 -
common/gui/business/icontactimporter.h
r320 r369 22 22 23 23 #include "common/business/icontactimporter_base.h" 24 #include "common/g ui/global.h"24 #include "common/global.h" 25 25 26 class COMMON_ GUI_EXPORT IContactImporter : public IBaseContactImporter {26 class COMMON_EXPORT IContactImporter : public IBaseContactImporter { 27 27 Q_INTERFACES(IBaseContactImporter) 28 28 -
common/gui/business/igateway.h
r319 r369 23 23 24 24 #include "common/business/igateway_base.h" 25 #include "common/g ui/global.h"25 #include "common/global.h" 26 26 #include "common/gui/ui/iaccountsettingswidget.h" 27 27 28 class COMMON_ GUI_EXPORT IGateway : public IBaseGateway {28 class COMMON_EXPORT IGateway : public IBaseGateway { 29 29 public: 30 30 virtual QIcon icon() const =0; -
common/gui/business/iintegration.h
r362 r369 25 25 #include "common/business/iintegration_base.h" 26 26 #include "common/exceptions/eexception.h" 27 #include "common/g ui/global.h"27 #include "common/global.h" 28 28 #include "common/gui/ui/isendingdialog.h" 29 29 30 class COMMON_ GUI_EXPORT IGuiIntegrationHelper : public QObject {30 class COMMON_EXPORT IGuiIntegrationHelper : public QObject { 31 31 Q_OBJECT 32 32 -
common/gui/common-gui.pro
r364 r369 26 26 business/igateway.h \ 27 27 business/iintegration.h \ 28 global.h \29 28 persistence/encryptedstoragehelper.h \ 30 29 persistence/imainstorage.h \ -
common/gui/persistence/encryptedstoragehelper.h
r319 r369 19 19 #define COMMON_GUI_PERSISTENCE_ENCRYPTEDSTORAGEHELPER_H 20 20 21 #include "common/g ui/global.h"21 #include "common/global.h" 22 22 #include "common/persistence/impl/encryptedstoragehelper_base.h" 23 23 24 24 namespace Persistence { 25 25 26 class COMMON_ GUI_EXPORT EncryptedMainStorage : public BaseEncryptedMainStorage {26 class COMMON_EXPORT EncryptedMainStorage : public BaseEncryptedMainStorage { 27 27 public: 28 28 EncryptedMainStorage(IMainStorage *mainStorage, const QString &encryptionKey) -
common/gui/persistence/imainstorage.h
r319 r369 22 22 #include <QtGui/QKeySequence> 23 23 24 #include "common/g ui/global.h"24 #include "common/global.h" 25 25 #include "common/persistence/imainstorage_base.h" 26 26 27 27 namespace Persistence { 28 28 29 class COMMON_ GUI_EXPORT IMainStorage : public IBaseMainStorage {29 class COMMON_EXPORT IMainStorage : public IBaseMainStorage { 30 30 public: 31 31 virtual QImage readImage(const QString &_namespace, const QString &key, const QImage &defaultValue = QImage()) =0; -
common/gui/ui/iaccountsettingswidget.h
r319 r369 21 21 #include <QtGui/QWidget> 22 22 23 #include "common/g ui/global.h"23 #include "common/global.h" 24 24 25 25 class IAccount; 26 26 27 class COMMON_ GUI_EXPORT IAccountSettingsWidget : public QWidget {27 class COMMON_EXPORT IAccountSettingsWidget : public QWidget { 28 28 Q_OBJECT 29 29 -
common/gui/ui/iclosepreventabledialog.h
r319 r369 22 22 #include <QtGui/QWidget> 23 23 24 #include "common/g ui/global.h"24 #include "common/global.h" 25 25 26 class COMMON_ GUI_EXPORT IClosePreventableDialog : public QDialog {26 class COMMON_EXPORT IClosePreventableDialog : public QDialog { 27 27 Q_OBJECT 28 28 -
common/gui/ui/isendingdialog.h
r319 r369 21 21 #include <QtGui/QWidget> 22 22 23 #include "common/g ui/global.h"23 #include "common/global.h" 24 24 #include "common/gui/ui/iclosepreventabledialog.h" 25 25 … … 27 27 class ISMSSendTask; 28 28 29 class COMMON_ GUI_EXPORT ISendingDialog: public IClosePreventableDialog {29 class COMMON_EXPORT ISendingDialog: public IClosePreventableDialog { 30 30 Q_OBJECT 31 31 Q_INTERFACES(IClosePreventableDialog) -
smssender.pri
r368 r369 27 27 QMAKE_CXXFLAGS *= -shared-libgcc 28 28 QMAKE_CXXFLAGS_DEBUG *= -gdwarf-2 -g3 29 #QMAKE_LFLAGS += -fvisibility=hidden29 QMAKE_LFLAGS += -fvisibility=hidden 30 30 31 31 INCLUDEPATH *= $$PWD
Note: See TracChangeset
for help on using the changeset viewer.