summaryrefslogtreecommitdiff
path: root/native/jni/qt-peer
diff options
context:
space:
mode:
authorDalibor Topic <robilad@yahoo.com>2005-08-15 21:53:11 +0000
committerDalibor Topic <robilad@yahoo.com>2005-08-15 21:53:11 +0000
commit76328997a9b86d1a2b5c027d1a23e8deb12c4ef9 (patch)
treeef2816da1e29075deeaf346aae5ed17aa35357a0 /native/jni/qt-peer
parent41edff5956ee7b73188dde4bbb91030e71560192 (diff)
downloadclasspath-76328997a9b86d1a2b5c027d1a23e8deb12c4ef9.tar.gz
Include assert.h in qt peers
2005-08-15 Dalibor Topic <robilad@kafe.org> * native/jni/qt-peer/mainqtthread.cpp, native/jni/qt-peer/qmatrix.cpp, native/jni/qt-peer/qpainterpath.cpp, native/jni/qt-peer/qpen.cpp, native/jni/qt-peer/qtbuttonpeer.cpp, native/jni/qt-peer/qtcanvaspeer.cpp, native/jni/qt-peer/qtcheckboxpeer.cpp, native/jni/qt-peer/qtchoicepeer.cpp, native/jni/qt-peer/qtcomponentpeer.cpp, native/jni/qt-peer/qtdialogpeer.cpp, native/jni/qt-peer/qtfiledialogpeer.cpp, native/jni/qt-peer/qtfontmetrics.cpp, native/jni/qt-peer/qtfontpeer.cpp, native/jni/qt-peer/qtframepeer.cpp, native/jni/qt-peer/qtgraphics.cpp, native/jni/qt-peer/qtimage.cpp, native/jni/qt-peer/qtlabelpeer.cpp, native/jni/qt-peer/qtlistpeer.cpp, native/jni/qt-peer/qtmenubarpeer.cpp, native/jni/qt-peer/qtmenucomponentpeer.cpp, native/jni/qt-peer/qtmenuitempeer.cpp, native/jni/qt-peer/qtmenupeer.cpp, native/jni/qt-peer/qtpanelpeer.cpp, native/jni/qt-peer/qtpopupmenupeer.cpp, native/jni/qt-peer/qtscreendevice.cpp, native/jni/qt-peer/qtscrollbarpeer.cpp, native/jni/qt-peer/qtscrollpanepeer.cpp, native/jni/qt-peer/qttextareapeer.cpp, native/jni/qt-peer/qttextfieldpeer.cpp, native/jni/qt-peer/qtvolatileimage.cpp, native/jni/qt-peer/qtwindowpeer.cpp: Include <assert.h>.
Diffstat (limited to 'native/jni/qt-peer')
-rw-r--r--native/jni/qt-peer/mainqtthread.cpp1
-rw-r--r--native/jni/qt-peer/qmatrix.cpp1
-rw-r--r--native/jni/qt-peer/qpainterpath.cpp1
-rw-r--r--native/jni/qt-peer/qpen.cpp1
-rw-r--r--native/jni/qt-peer/qtbuttonpeer.cpp1
-rw-r--r--native/jni/qt-peer/qtcanvaspeer.cpp1
-rw-r--r--native/jni/qt-peer/qtcheckboxpeer.cpp1
-rw-r--r--native/jni/qt-peer/qtchoicepeer.cpp1
-rw-r--r--native/jni/qt-peer/qtcomponentpeer.cpp1
-rw-r--r--native/jni/qt-peer/qtdialogpeer.cpp1
-rw-r--r--native/jni/qt-peer/qtfiledialogpeer.cpp1
-rw-r--r--native/jni/qt-peer/qtfontmetrics.cpp1
-rw-r--r--native/jni/qt-peer/qtfontpeer.cpp1
-rw-r--r--native/jni/qt-peer/qtframepeer.cpp1
-rw-r--r--native/jni/qt-peer/qtgraphics.cpp1
-rw-r--r--native/jni/qt-peer/qtimage.cpp1
-rw-r--r--native/jni/qt-peer/qtlabelpeer.cpp1
-rw-r--r--native/jni/qt-peer/qtlistpeer.cpp1
-rw-r--r--native/jni/qt-peer/qtmenubarpeer.cpp1
-rw-r--r--native/jni/qt-peer/qtmenucomponentpeer.cpp1
-rw-r--r--native/jni/qt-peer/qtmenuitempeer.cpp1
-rw-r--r--native/jni/qt-peer/qtmenupeer.cpp1
-rw-r--r--native/jni/qt-peer/qtpanelpeer.cpp1
-rw-r--r--native/jni/qt-peer/qtpopupmenupeer.cpp1
-rw-r--r--native/jni/qt-peer/qtscreendevice.cpp1
-rw-r--r--native/jni/qt-peer/qtscrollbarpeer.cpp1
-rw-r--r--native/jni/qt-peer/qtscrollpanepeer.cpp1
-rw-r--r--native/jni/qt-peer/qttextareapeer.cpp1
-rw-r--r--native/jni/qt-peer/qttextfieldpeer.cpp1
-rw-r--r--native/jni/qt-peer/qtvolatileimage.cpp1
-rw-r--r--native/jni/qt-peer/qtwindowpeer.cpp1
31 files changed, 31 insertions, 0 deletions
diff --git a/native/jni/qt-peer/mainqtthread.cpp b/native/jni/qt-peer/mainqtthread.cpp
index a908370b4..423c39cbd 100644
--- a/native/jni/qt-peer/mainqtthread.cpp
+++ b/native/jni/qt-peer/mainqtthread.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <jni.h>
#include <QApplication>
#include <QThread>
diff --git a/native/jni/qt-peer/qmatrix.cpp b/native/jni/qt-peer/qmatrix.cpp
index 96a9407d8..4b99ae7ab 100644
--- a/native/jni/qt-peer/qmatrix.cpp
+++ b/native/jni/qt-peer/qmatrix.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QMatrix>
#include <gnu_java_awt_peer_qt_QMatrix.h>
#include "nativewrapper.h"
diff --git a/native/jni/qt-peer/qpainterpath.cpp b/native/jni/qt-peer/qpainterpath.cpp
index 97103d6a5..cfe9eeae9 100644
--- a/native/jni/qt-peer/qpainterpath.cpp
+++ b/native/jni/qt-peer/qpainterpath.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QPainterPath>
#include <gnu_java_awt_peer_qt_QPainterPath.h>
#include "nativewrapper.h"
diff --git a/native/jni/qt-peer/qpen.cpp b/native/jni/qt-peer/qpen.cpp
index de3cf4721..353826f6b 100644
--- a/native/jni/qt-peer/qpen.cpp
+++ b/native/jni/qt-peer/qpen.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QColor>
#include <QPen>
#include <gnu_java_awt_peer_qt_QPen.h>
diff --git a/native/jni/qt-peer/qtbuttonpeer.cpp b/native/jni/qt-peer/qtbuttonpeer.cpp
index cf0ec21d7..6ec90e2c4 100644
--- a/native/jni/qt-peer/qtbuttonpeer.cpp
+++ b/native/jni/qt-peer/qtbuttonpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QMainWindow>
#include <QPushButton>
#include <QFont>
diff --git a/native/jni/qt-peer/qtcanvaspeer.cpp b/native/jni/qt-peer/qtcanvaspeer.cpp
index f6f6926bf..1d3fcb338 100644
--- a/native/jni/qt-peer/qtcanvaspeer.cpp
+++ b/native/jni/qt-peer/qtcanvaspeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QMainWindow>
#include <QWidget>
#include <gnu_java_awt_peer_qt_QtCanvasPeer.h>
diff --git a/native/jni/qt-peer/qtcheckboxpeer.cpp b/native/jni/qt-peer/qtcheckboxpeer.cpp
index 018d2e06c..46329cb43 100644
--- a/native/jni/qt-peer/qtcheckboxpeer.cpp
+++ b/native/jni/qt-peer/qtcheckboxpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QAbstractButton>
#include <QCheckBox>
#include <QRadioButton>
diff --git a/native/jni/qt-peer/qtchoicepeer.cpp b/native/jni/qt-peer/qtchoicepeer.cpp
index b1675bebe..2a194cdf5 100644
--- a/native/jni/qt-peer/qtchoicepeer.cpp
+++ b/native/jni/qt-peer/qtchoicepeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QComboBox>
#include <gnu_java_awt_peer_qt_QtChoicePeer.h>
#include "qtcomponent.h"
diff --git a/native/jni/qt-peer/qtcomponentpeer.cpp b/native/jni/qt-peer/qtcomponentpeer.cpp
index 0996b6973..931423644 100644
--- a/native/jni/qt-peer/qtcomponentpeer.cpp
+++ b/native/jni/qt-peer/qtcomponentpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QApplication>
#include <QDesktopWidget>
#include <QShowEvent>
diff --git a/native/jni/qt-peer/qtdialogpeer.cpp b/native/jni/qt-peer/qtdialogpeer.cpp
index bc7157b15..e3ec88111 100644
--- a/native/jni/qt-peer/qtdialogpeer.cpp
+++ b/native/jni/qt-peer/qtdialogpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <qdialog.h>
#include <gnu_java_awt_peer_qt_QtDialogPeer.h>
#include "qtcomponent.h"
diff --git a/native/jni/qt-peer/qtfiledialogpeer.cpp b/native/jni/qt-peer/qtfiledialogpeer.cpp
index dbcf6cfdf..bd6ab3f08 100644
--- a/native/jni/qt-peer/qtfiledialogpeer.cpp
+++ b/native/jni/qt-peer/qtfiledialogpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QFileDialog>
#include <QDialog>
#include <gnu_java_awt_peer_qt_QtFileDialogPeer.h>
diff --git a/native/jni/qt-peer/qtfontmetrics.cpp b/native/jni/qt-peer/qtfontmetrics.cpp
index b95c0e111..fd56b2878 100644
--- a/native/jni/qt-peer/qtfontmetrics.cpp
+++ b/native/jni/qt-peer/qtfontmetrics.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QChar>
#include <QFont>
#include <QFontMetrics>
diff --git a/native/jni/qt-peer/qtfontpeer.cpp b/native/jni/qt-peer/qtfontpeer.cpp
index dbf27d0fc..7859f6234 100644
--- a/native/jni/qt-peer/qtfontpeer.cpp
+++ b/native/jni/qt-peer/qtfontpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QFont>
#include <QString>
#include <gnu_java_awt_peer_qt_QtFontPeer.h>
diff --git a/native/jni/qt-peer/qtframepeer.cpp b/native/jni/qt-peer/qtframepeer.cpp
index b2c763943..9005311b0 100644
--- a/native/jni/qt-peer/qtframepeer.cpp
+++ b/native/jni/qt-peer/qtframepeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QApplication>
#include <QMainWindow>
#include <QMenuBar>
diff --git a/native/jni/qt-peer/qtgraphics.cpp b/native/jni/qt-peer/qtgraphics.cpp
index f149c32ec..1abcc9f08 100644
--- a/native/jni/qt-peer/qtgraphics.cpp
+++ b/native/jni/qt-peer/qtgraphics.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <jni.h>
#include <QPainter>
#include <QBrush>
diff --git a/native/jni/qt-peer/qtimage.cpp b/native/jni/qt-peer/qtimage.cpp
index 2a86feac9..778ab5af8 100644
--- a/native/jni/qt-peer/qtimage.cpp
+++ b/native/jni/qt-peer/qtimage.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QImage>
#include <QColor>
#include <QMatrix>
diff --git a/native/jni/qt-peer/qtlabelpeer.cpp b/native/jni/qt-peer/qtlabelpeer.cpp
index 1ff376a04..895994e80 100644
--- a/native/jni/qt-peer/qtlabelpeer.cpp
+++ b/native/jni/qt-peer/qtlabelpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QLabel>
#include <QString>
#include <gnu_java_awt_peer_qt_QtLabelPeer.h>
diff --git a/native/jni/qt-peer/qtlistpeer.cpp b/native/jni/qt-peer/qtlistpeer.cpp
index a5d8bff4e..b702d7bca 100644
--- a/native/jni/qt-peer/qtlistpeer.cpp
+++ b/native/jni/qt-peer/qtlistpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QWidget>
#include <QListWidget>
#include <gnu_java_awt_peer_qt_QtListPeer.h>
diff --git a/native/jni/qt-peer/qtmenubarpeer.cpp b/native/jni/qt-peer/qtmenubarpeer.cpp
index ae62c8dd0..2c855773e 100644
--- a/native/jni/qt-peer/qtmenubarpeer.cpp
+++ b/native/jni/qt-peer/qtmenubarpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QMenuBar>
#include <QToolBar>
#include <QMenu>
diff --git a/native/jni/qt-peer/qtmenucomponentpeer.cpp b/native/jni/qt-peer/qtmenucomponentpeer.cpp
index 68388fc82..279d0a7f0 100644
--- a/native/jni/qt-peer/qtmenucomponentpeer.cpp
+++ b/native/jni/qt-peer/qtmenucomponentpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QWidget>
#include <gnu_java_awt_peer_qt_QtMenuComponentPeer.h>
#include "nativewrapper.h"
diff --git a/native/jni/qt-peer/qtmenuitempeer.cpp b/native/jni/qt-peer/qtmenuitempeer.cpp
index b5dba0393..0d0b92e19 100644
--- a/native/jni/qt-peer/qtmenuitempeer.cpp
+++ b/native/jni/qt-peer/qtmenuitempeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QMenu>
#include <QAction>
#include <QThread>
diff --git a/native/jni/qt-peer/qtmenupeer.cpp b/native/jni/qt-peer/qtmenupeer.cpp
index e498bbe21..568074b17 100644
--- a/native/jni/qt-peer/qtmenupeer.cpp
+++ b/native/jni/qt-peer/qtmenupeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QMenu>
#include <gnu_java_awt_peer_qt_QtMenuPeer.h>
#include "nativewrapper.h"
diff --git a/native/jni/qt-peer/qtpanelpeer.cpp b/native/jni/qt-peer/qtpanelpeer.cpp
index d9c1ed573..41ee1a28c 100644
--- a/native/jni/qt-peer/qtpanelpeer.cpp
+++ b/native/jni/qt-peer/qtpanelpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <qwidget.h>
#include <gnu_java_awt_peer_qt_QtPanelPeer.h>
#include "qtcomponent.h"
diff --git a/native/jni/qt-peer/qtpopupmenupeer.cpp b/native/jni/qt-peer/qtpopupmenupeer.cpp
index a25492e18..56784a591 100644
--- a/native/jni/qt-peer/qtpopupmenupeer.cpp
+++ b/native/jni/qt-peer/qtpopupmenupeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QMenu>
#include <QPoint>
#include <QWidget>
diff --git a/native/jni/qt-peer/qtscreendevice.cpp b/native/jni/qt-peer/qtscreendevice.cpp
index 91217cbba..c5cc2fe37 100644
--- a/native/jni/qt-peer/qtscreendevice.cpp
+++ b/native/jni/qt-peer/qtscreendevice.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QApplication>
#include <QDesktopWidget>
#include <gnu_java_awt_peer_qt_QtScreenDevice.h>
diff --git a/native/jni/qt-peer/qtscrollbarpeer.cpp b/native/jni/qt-peer/qtscrollbarpeer.cpp
index af87b4968..1af3db7fc 100644
--- a/native/jni/qt-peer/qtscrollbarpeer.cpp
+++ b/native/jni/qt-peer/qtscrollbarpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QScrollBar>
#include <gnu_java_awt_peer_qt_QtScrollbarPeer.h>
#include "keybindings.h"
diff --git a/native/jni/qt-peer/qtscrollpanepeer.cpp b/native/jni/qt-peer/qtscrollpanepeer.cpp
index b10c44b06..417c182a3 100644
--- a/native/jni/qt-peer/qtscrollpanepeer.cpp
+++ b/native/jni/qt-peer/qtscrollpanepeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QScrollArea>
#include <QScrollBar>
#include <gnu_java_awt_peer_qt_QtScrollPanePeer.h>
diff --git a/native/jni/qt-peer/qttextareapeer.cpp b/native/jni/qt-peer/qttextareapeer.cpp
index 087640a94..ceb3847da 100644
--- a/native/jni/qt-peer/qttextareapeer.cpp
+++ b/native/jni/qt-peer/qttextareapeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <time.h>
#include <QTextEdit>
#include <QTextCursor>
diff --git a/native/jni/qt-peer/qttextfieldpeer.cpp b/native/jni/qt-peer/qttextfieldpeer.cpp
index 8ff944cec..da128fb41 100644
--- a/native/jni/qt-peer/qttextfieldpeer.cpp
+++ b/native/jni/qt-peer/qttextfieldpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QLineEdit>
#include <QWidget>
#include <gnu_java_awt_peer_qt_QtTextFieldPeer.h>
diff --git a/native/jni/qt-peer/qtvolatileimage.cpp b/native/jni/qt-peer/qtvolatileimage.cpp
index 1b618c4eb..59e6ce40e 100644
--- a/native/jni/qt-peer/qtvolatileimage.cpp
+++ b/native/jni/qt-peer/qtvolatileimage.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QImage>
#include <QColor>
#include <QMatrix>
diff --git a/native/jni/qt-peer/qtwindowpeer.cpp b/native/jni/qt-peer/qtwindowpeer.cpp
index 915c7ce94..8257051e0 100644
--- a/native/jni/qt-peer/qtwindowpeer.cpp
+++ b/native/jni/qt-peer/qtwindowpeer.cpp
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+#include <assert.h>
#include <QWidget>
#include <qstyle.h>
#include <gnu_java_awt_peer_qt_QtWindowPeer.h>