summaryrefslogtreecommitdiffstats
path: root/src/widgets/kernel/qapplication.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2011-05-07 20:56:32 +0200
committerLars Knoll <lars.knoll@nokia.com>2011-05-07 20:56:32 +0200
commit7ff96330ed28b957a80d294a43748c8051c0e483 (patch)
tree435ad1eebe666d8e8eee21cd888d183899b7ef4f /src/widgets/kernel/qapplication.cpp
parentd3d078aa4ba2aeebb0998e75cd9d5b980db7fbfe (diff)
get QtWidgets to link
some more changes, mainly exporting methods from QtGui to get QtWidgets to link.
Diffstat (limited to 'src/widgets/kernel/qapplication.cpp')
-rw-r--r--src/widgets/kernel/qapplication.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/widgets/kernel/qapplication.cpp b/src/widgets/kernel/qapplication.cpp
index 4e7119fdf9..059c06d162 100644
--- a/src/widgets/kernel/qapplication.cpp
+++ b/src/widgets/kernel/qapplication.cpp
@@ -916,10 +916,6 @@ QApplication::QApplication(Display *dpy, int &argc, char **argv,
#endif // Q_WS_X11
-extern void qInitDrawhelperAsm();
-extern void qInitImageConversions();
-extern int qRegisterGuiVariant();
-extern int qUnregisterGuiVariant();
#ifndef QT_NO_STATEMACHINE
extern int qRegisterGuiStateMachine();
extern int qUnregisterGuiStateMachine();
@@ -937,8 +933,6 @@ void QApplicationPrivate::initialize()
if (qt_appType != QApplication::Tty)
(void) QApplication::style(); // trigger creation of application style
- // trigger registering of QVariant's GUI types
- qRegisterGuiVariant();
#ifndef QT_NO_STATEMACHINE
// trigger registering of QStateMachine's GUI types
qRegisterGuiStateMachine();
@@ -966,11 +960,6 @@ void QApplicationPrivate::initialize()
#endif //QT_AUTO_MAXIMIZE_THRESHOLD
#endif //Q_WS_WINCE
- // Set up which span functions should be used in raster engine...
- qInitDrawhelperAsm();
- // and QImage conversion functions
- qInitImageConversions();
-
#ifndef QT_NO_WHEELEVENT
QApplicationPrivate::wheel_scroll_lines = 3;
#endif
@@ -1160,8 +1149,6 @@ QApplication::~QApplication()
// trigger unregistering of QStateMachine's GUI types
qUnregisterGuiStateMachine();
#endif
- // trigger unregistering of QVariant's GUI types
- qUnregisterGuiVariant();
}