summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>2011-09-03 14:20:46 (GMT)
committerLiang Qi <liang.qi@nokia.com>2011-09-06 13:30:26 (GMT)
commita5211c5c259f2741bf1f3f9dabf6587516eee052 (patch)
treeddf9a88ed82130eb19b9cd136ca3b6b277002b5e
parent02f55668dada4a23ab84e4d3bda1df8a4984b3ae (diff)
downloadQt-a5211c5c259f2741bf1f3f9dabf6587516eee052.zip
Qt-a5211c5c259f2741bf1f3f9dabf6587516eee052.tar.gz
Qt-a5211c5c259f2741bf1f3f9dabf6587516eee052.tar.bz2
Fix the build with -qtnamespace configure options
Merge-Request: 1291 Reviewed-by: Liang Qi <liang.qi@nokia.com>
-rw-r--r--examples/opengl/cube/mainwidget.h2
-rw-r--r--examples/webkit/simplewebplugin/csvfactory.h6
-rw-r--r--examples/webkit/webftpclient/ftpreply.h4
-rw-r--r--examples/webkit/webftpclient/ftpview.h3
-rw-r--r--examples/widgets/orientation/mainwindow.h6
-rw-r--r--src/corelib/arch/generic/qatomic_generic_windows.cpp3
-rw-r--r--src/corelib/kernel/qsystemsemaphore_win.cpp4
-rw-r--r--src/gui/kernel/qwidget_mac.mm2
-rw-r--r--src/gui/text/qfontengine_coretext_p.h8
-rw-r--r--src/qt3support/network/q3socketdevice_win.cpp5
10 files changed, 38 insertions, 5 deletions
diff --git a/examples/opengl/cube/mainwidget.h b/examples/opengl/cube/mainwidget.h
index c6da29f..eb509d0 100644
--- a/examples/opengl/cube/mainwidget.h
+++ b/examples/opengl/cube/mainwidget.h
@@ -48,8 +48,10 @@
#include <QQuaternion>
#include <QVector2D>
+QT_BEGIN_NAMESPACE
class QBasicTimer;
class QGLShaderProgram;
+QT_END_NAMESPACE
class GeometryEngine;
diff --git a/examples/webkit/simplewebplugin/csvfactory.h b/examples/webkit/simplewebplugin/csvfactory.h
index e3013b1..0168dc2 100644
--- a/examples/webkit/simplewebplugin/csvfactory.h
+++ b/examples/webkit/simplewebplugin/csvfactory.h
@@ -44,10 +44,10 @@
#include <QNetworkRequest>
#include <QWebPluginFactory>
-QT_BEGIN_NAMESPACE
class QNetworkAccessManager;
class QNetworkReply;
-QT_END_NAMESPACE
+
+QT_BEGIN_NAMESPACE
//! [plugin factory]
class CSVFactory : public QWebPluginFactory
@@ -66,4 +66,6 @@ private:
};
//! [plugin factory]
+QT_END_NAMESPACE
+
#endif
diff --git a/examples/webkit/webftpclient/ftpreply.h b/examples/webkit/webftpclient/ftpreply.h
index ca0a271..65c8c66 100644
--- a/examples/webkit/webftpclient/ftpreply.h
+++ b/examples/webkit/webftpclient/ftpreply.h
@@ -46,6 +46,10 @@
#include <QUrlInfo>
#include <QFtp>
+QT_BEGIN_NAMESPACE
+class QFtp;
+QT_END_NAMESPACE
+
//! [class definition]
class FtpReply : public QNetworkReply
{
diff --git a/examples/webkit/webftpclient/ftpview.h b/examples/webkit/webftpclient/ftpview.h
index 544c0a9..ae4f9c1 100644
--- a/examples/webkit/webftpclient/ftpview.h
+++ b/examples/webkit/webftpclient/ftpview.h
@@ -41,6 +41,9 @@
#include <QWebView>
class Downloader;
+QT_BEGIN_NAMESPACE
+class QNetworkAccessManager;
+QT_END_NAMESPACE
class FtpView : public QWebView
{
diff --git a/examples/widgets/orientation/mainwindow.h b/examples/widgets/orientation/mainwindow.h
index 745497c..29ccf06 100644
--- a/examples/widgets/orientation/mainwindow.h
+++ b/examples/widgets/orientation/mainwindow.h
@@ -46,6 +46,10 @@
#include "ui_landscape.h"
#include "ui_portrait.h"
+class QAbstractButton;
+
+QT_BEGIN_NAMESPACE
+
//! [0]
class MainWindow : public QWidget
{
@@ -68,4 +72,6 @@ private:
};
//! [0]
+QT_END_NAMESPACE
+
#endif // MAINWINDOW_H
diff --git a/src/corelib/arch/generic/qatomic_generic_windows.cpp b/src/corelib/arch/generic/qatomic_generic_windows.cpp
index 7ce0eea..123b823 100644
--- a/src/corelib/arch/generic/qatomic_generic_windows.cpp
+++ b/src/corelib/arch/generic/qatomic_generic_windows.cpp
@@ -43,6 +43,7 @@
#include <QtCore/qatomic.h>
+QT_BEGIN_NAMESPACE
class QCriticalSection
{
@@ -129,3 +130,5 @@ void *QBasicAtomicPointer_fetchAndAddOrdered(void * volatile *_q_value, qptrdiff
qAtomicCriticalSection.unlock();
return returnValue;
}
+
+QT_END_NAMESPACE
diff --git a/src/corelib/kernel/qsystemsemaphore_win.cpp b/src/corelib/kernel/qsystemsemaphore_win.cpp
index 0e9d645..76b57b9 100644
--- a/src/corelib/kernel/qsystemsemaphore_win.cpp
+++ b/src/corelib/kernel/qsystemsemaphore_win.cpp
@@ -133,6 +133,6 @@ bool QSystemSemaphorePrivate::modifySemaphore(int count)
return true;
}
-#endif // QT_NO_SYSTEMSEMAPHORE
-
QT_END_NAMESPACE
+
+#endif // QT_NO_SYSTEMSEMAPHORE
diff --git a/src/gui/kernel/qwidget_mac.mm b/src/gui/kernel/qwidget_mac.mm
index a51e295..632df78 100644
--- a/src/gui/kernel/qwidget_mac.mm
+++ b/src/gui/kernel/qwidget_mac.mm
@@ -5031,7 +5031,7 @@ void QWidgetPrivate::registerTouchWindow(bool enable)
if (enable == touchEventsEnabled)
return;
- QCocoaView *view = static_cast<QCocoaView *>(qt_mac_effectiveview_for(q));
+ QT_MANGLE_NAMESPACE(QCocoaView) *view = static_cast<QT_MANGLE_NAMESPACE(QCocoaView) *>(qt_mac_effectiveview_for(q));
if (!view)
return;
diff --git a/src/gui/text/qfontengine_coretext_p.h b/src/gui/text/qfontengine_coretext_p.h
index 0a2ae1f..4bd80be 100644
--- a/src/gui/text/qfontengine_coretext_p.h
+++ b/src/gui/text/qfontengine_coretext_p.h
@@ -52,6 +52,10 @@
#if !defined(Q_WS_MAC) || (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)
+QT_BEGIN_HEADER
+
+QT_BEGIN_NAMESPACE
+
class QRawFontPrivate;
class QCoreTextFontEngineMulti;
class QCoreTextFontEngine : public QFontEngine
@@ -146,6 +150,10 @@ private:
CGAffineTransform qt_transform_from_fontdef(const QFontDef &fontDef);
+QT_END_NAMESPACE
+
+QT_END_HEADER
+
#endif// !defined(Q_WS_MAC) || (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)
#endif // QFONTENGINE_CORETEXT_P_H
diff --git a/src/qt3support/network/q3socketdevice_win.cpp b/src/qt3support/network/q3socketdevice_win.cpp
index df115d7..bde63a0 100644
--- a/src/qt3support/network/q3socketdevice_win.cpp
+++ b/src/qt3support/network/q3socketdevice_win.cpp
@@ -83,8 +83,13 @@ typedef struct {
struct qt_in6_addr sin6_addr; /* IPv6 address */
u_long sin6_scope_id; /* set of interfaces for a scope */
} qt_sockaddr_in6;
+
+QT_END_NAMESPACE
+
#endif
+QT_BEGIN_NAMESPACE
+
#ifndef AF_INET6
#define AF_INET6 23 /* Internetwork Version 6 */
#endif