diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-16 23:48:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-16 23:48:06 +0000 |
commit | bd72b76ea221da623efaf09fdce95ef415e773fa (patch) | |
tree | c5f5ef55c3521d31d237eee90c04189e720adde8 | |
parent | c22170b25ad5ac6fb657e5313b4af8369ad7d1db (diff) | |
download | amarok-bd72b76ea221da623efaf09fdce95ef415e773fa.tar.gz amarok-bd72b76ea221da623efaf09fdce95ef415e773fa.zip |
On modern TQt systems TQGLWidget will always be available, so remove the offending #ifdef that is breaking compilation
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/amarok@1228283 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r-- | amarok/src/analyzers/analyzerbase.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/amarok/src/analyzers/analyzerbase.h b/amarok/src/analyzers/analyzerbase.h index d8270026..e15f5ee1 100644 --- a/amarok/src/analyzers/analyzerbase.h +++ b/amarok/src/analyzers/analyzerbase.h @@ -17,7 +17,7 @@ #include <tqwidget.h> //baseclass #include <vector> //included for convenience -#ifdef HAVE_QGLWIDGET +//#ifdef HAVE_QGLWIDGET #include <tqgl.h> //baseclass #ifdef Q_WS_MACX #include <OpenGL/gl.h> //included for convenience @@ -26,10 +26,10 @@ #include <GL/gl.h> //included for convenience #include <GL/glu.h> //included for convenience #endif -#else -//this is a workaround for compile problems due to moc -#define TQGLWidget QWidget -#endif +//#else +////this is a workaround for compile problems due to moc +//#define TQGLWidget QWidget +//#endif class TQEvent; class TQPaintEvent; |