diff options
author | Friedemann Kleint <Friedemann.Kleint@digia.com> | 2014-02-20 09:24:22 (GMT) |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2014-02-20 15:25:29 (GMT) |
commit | eefff4ac4b6915485d6362536fe0907820a68982 (patch) | |
tree | b09796f8c861b4b999315606207947ddbda04435 | |
parent | 8dc37368441d13f41f029b4191ce734a9758d2c8 (diff) | |
download | Qt-eefff4ac4b6915485d6362536fe0907820a68982.zip Qt-eefff4ac4b6915485d6362536fe0907820a68982.tar.gz Qt-eefff4ac4b6915485d6362536fe0907820a68982.tar.bz2 |
Webbrowser example: Fix crash due to deprecated code.
The example uses a Qt Designer form with widgets on a QToolBar
imported from Qt 3 which is not supported in Qt 4 and later.
In the code generated by uic, a QLabel is constructed passing
the toolbar as parent and added to the toolbar using
QToolBar::addWidget() which then causes a crash in Qt 4.
Move the widgets from the form into the class to avoid this.
Task-number: QTBUG-36948
Change-Id: Ia4af871ce99faf555bebc6ebde19bcae0de4d29e
Reviewed-by: Andy Shaw <andy.shaw@digia.com>
(cherry picked from qtactiveqt/2e44efa5056355ac2c069ad2bd8a8ba6562f3eb6)
-rw-r--r-- | examples/activeqt/webbrowser/main.cpp | 7 | ||||
-rw-r--r-- | examples/activeqt/webbrowser/mainwindow.ui | 21 | ||||
-rw-r--r-- | examples/activeqt/webbrowser/mainwindow_windowsmobile.ui | 21 |
3 files changed, 7 insertions, 42 deletions
diff --git a/examples/activeqt/webbrowser/main.cpp b/examples/activeqt/webbrowser/main.cpp index 1e4efb5..37a9890 100644 --- a/examples/activeqt/webbrowser/main.cpp +++ b/examples/activeqt/webbrowser/main.cpp @@ -41,6 +41,8 @@ #include <QApplication> #include <QMessageBox> #include <QProgressBar> +#include <QLineEdit> +#include <QLabel> #include <QStatusBar> #include <QMainWindow> #include <QAbstractEventDispatcher> @@ -74,6 +76,7 @@ public slots: private: QProgressBar *pb; + QLineEdit *addressEdit; }; //! [0] //! [1] @@ -81,6 +84,10 @@ MainWindow::MainWindow() { setupUi(this); + addressEdit = new QLineEdit; + tbAddress->insertWidget(actionGo, new QLabel(tr("Address"))); + tbAddress->insertWidget(actionGo, addressEdit); + connect(addressEdit, SIGNAL(returnPressed()), actionGo, SLOT(trigger())); connect(actionBack, SIGNAL(triggered()), WebBrowser, SLOT(GoBack())); connect(actionForward, SIGNAL(triggered()), WebBrowser, SLOT(GoForward())); diff --git a/examples/activeqt/webbrowser/mainwindow.ui b/examples/activeqt/webbrowser/mainwindow.ui index 12a0a32..9af0f8e 100644 --- a/examples/activeqt/webbrowser/mainwindow.ui +++ b/examples/activeqt/webbrowser/mainwindow.ui @@ -87,19 +87,6 @@ <property name="windowTitle" > <string>Address</string> </property> - <widget class="QLabel" name="lblAddress" > - <property name="objectName" > - <string notr="true" >lblAddress</string> - </property> - <property name="text" > - <string>Address</string> - </property> - </widget> - <widget class="QLineEdit" name="addressEdit" > - <property name="objectName" > - <string notr="true" >addressEdit</string> - </property> - </widget> <addaction name="actionGo" /> </widget> <widget class="QMenuBar" name="menubar" > @@ -271,14 +258,6 @@ <header>webaxwidget.h</header> </customwidget> </customwidgets> - <connections> - <connection> - <sender>addressEdit</sender> - <signal>returnPressed()</signal> - <receiver>actionGo</receiver> - <slot>trigger()</slot> - </connection> - </connections> <layoutdefault spacing="6" margin="11" /> <images> <image name="image0" > diff --git a/examples/activeqt/webbrowser/mainwindow_windowsmobile.ui b/examples/activeqt/webbrowser/mainwindow_windowsmobile.ui index 98a9ddb..768dc43 100644 --- a/examples/activeqt/webbrowser/mainwindow_windowsmobile.ui +++ b/examples/activeqt/webbrowser/mainwindow_windowsmobile.ui @@ -87,19 +87,6 @@ <property name="windowTitle" > <string>Address</string> </property> - <widget class="QLabel" name="lblAddress" > - <property name="objectName" > - <string notr="true" >lblAddress</string> - </property> - <property name="text" > - <string>Address</string> - </property> - </widget> - <widget class="QLineEdit" name="addressEdit" > - <property name="objectName" > - <string notr="true" >addressEdit</string> - </property> - </widget> <addaction name="actionGo" /> </widget> <widget class="QMenuBar" name="menubar" > @@ -264,14 +251,6 @@ </property> </actiongroup> </widget> - <connections> - <connection> - <sender>addressEdit</sender> - <signal>returnPressed()</signal> - <receiver>actionGo</receiver> - <slot>trigger()</slot> - </connection> - </connections> <layoutdefault spacing="6" margin="11" /> <images> <image name="image0" > |