Changeset 163 in tspsg-svn for trunk/src/mainwindow.h


Ignore:
Timestamp:
Apr 15, 2011, 4:21:25 AM (13 years ago)
Author:
laleppa
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
  • trunk/src/mainwindow.h

    r162 r163  
    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.