Changeset 628500a5d6 in tspsg for src/mainwindow.cpp
- Timestamp:
- Mar 31, 2013, 9:25:38 PM (12 years ago)
- Branches:
- 0.1.4.170-beta2-bb10
- Children:
- c039ebbe82
- Parents:
- ccdffe3a5f
- git-author:
- Oleksii Serdiuk <contacts@…> (03/31/13 21:25:38)
- git-committer:
- Oleksii Serdiuk <contacts@…> (03/31/13 21:46:09)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mainwindow.cpp
rccdffe3a5f r628500a5d6 56 56 setupUi(); 57 57 setAcceptDrops(true); 58 59 #ifdef Q_OS_BLACKBERRY 60 taskView->setEditTriggers(QAbstractItemView::AllEditTriggers); 61 #endif 58 62 59 63 initDocStyleSheet(); … … 630 634 txtAbout->moveCursor(QTextCursor::Start); 631 635 txtAbout->setFrameShape(QFrame::NoFrame); 636 #ifdef Q_OS_BLACKBERRY 637 txtAbout->setAttribute(Qt::WA_InputMethodEnabled, false); 638 #endif 632 639 633 640 // txtCredits->setWordWrapMode(QTextOption::NoWrap); … … 636 643 txtCredits->moveCursor(QTextCursor::Start); 637 644 txtCredits->setFrameShape(QFrame::NoFrame); 645 #ifdef Q_OS_BLACKBERRY 646 txtCredits->setAttribute(Qt::WA_InputMethodEnabled, false); 647 #endif 638 648 639 649 txtLicense->setWordWrapMode(QTextOption::NoWrap); … … 642 652 txtLicense->moveCursor(QTextCursor::Start); 643 653 txtLicense->setFrameShape(QFrame::NoFrame); 654 #ifdef Q_OS_BLACKBERRY 655 txtLicense->setAttribute(Qt::WA_InputMethodEnabled, false); 656 #endif 644 657 645 658 bb->button(QDialogButtonBox::Ok)->setCursor(QCursor(Qt::PointingHandCursor)); … … 743 756 pd.setCancelButton(cancel); 744 757 pd.setMaximum(n); 758 pd.setAutoClose(false); 745 759 pd.setAutoReset(false); 746 760 pd.setLabelText(tr("Calculating optimal route..."));
Note: See TracChangeset
for help on using the changeset viewer.