diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2009-08-03 14:49:46 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2009-08-04 08:06:21 (GMT) |
commit | d3c96863ec17a69c616bdcb12e6a99a874eba66d (patch) | |
tree | a3e0c512fbc7ba23679193c6271c3cd531971222 /src/activeqt/container/qaxwidget.cpp | |
parent | 14f9cbbec204ba146205d12cb06577d41b5f974c (diff) | |
download | Qt-d3c96863ec17a69c616bdcb12e6a99a874eba66d.zip Qt-d3c96863ec17a69c616bdcb12e6a99a874eba66d.tar.gz Qt-d3c96863ec17a69c616bdcb12e6a99a874eba66d.tar.bz2 |
fix warnings on mingw (gcc4.4)
basically reordering members initialization in constructors or fixing
singed/unsigned checks.
Reviewed-by: Trustme
Diffstat (limited to 'src/activeqt/container/qaxwidget.cpp')
-rw-r--r-- | src/activeqt/container/qaxwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/activeqt/container/qaxwidget.cpp b/src/activeqt/container/qaxwidget.cpp index ff6bcb8..e4c9d42 100644 --- a/src/activeqt/container/qaxwidget.cpp +++ b/src/activeqt/container/qaxwidget.cpp @@ -531,7 +531,7 @@ bool axc_FilterProc(void *m) } QAxClientSite::QAxClientSite(QAxWidget *c) -: ref(1), widget(c), host(0), eventTranslated(true) +: eventTranslated(true), ref(1), widget(c), host(0) { aggregatedObject = widget->createAggregate(); if (aggregatedObject) { |