Changeset fddcfa4b55 in tspsg for src/mainwindow.h


Ignore:
Timestamp:
Apr 15, 2011, 4:21:25 AM (13 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
27b1dca32b
Parents:
8f2427aaf0
git-author:
Oleksii Serdiuk <contacts@…> (04/15/11 04:21:25)
git-committer:
Oleksii Serdiuk <contacts@…> (06/29/12 19:45:59)
Message:
  • Removed static build detection as it caused some troubles with Qt Creator and Symbian on-device debugging. Not that much needed, anyway :-)
  • FIX: No Cancel option in Unsaved Changes dialog under Symbian (fixed bug:7).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mainwindow.h

    r8f2427aaf0 rfddcfa4b55  
    161161};
    162162
     163#ifdef Q_WS_S60
     164// A quickly hacked QMessageBox for Symbian that supports three buttons.
     165class QSMessageBox: public QMessageBox {
     166    Q_OBJECT
     167private slots:
     168    void cancel();
     169    void discard();
     170public:
     171    QSMessageBox(QWidget *parent = 0);
     172};
     173#endif // Q_WS_S60
     174
    163175#endif // MAINWINDOW_H
Note: See TracChangeset for help on using the changeset viewer.