summaryrefslogtreecommitdiff
path: root/src/plugins/platforms/wayland_common/qwaylanddataoffer.h
diff options
context:
space:
mode:
authorAndy Nichols <andy.nichols@digia.com>2013-02-05 12:22:17 +0100
committerAndy Nichols <andy.nichols@digia.com>2013-02-08 12:34:56 +0100
commit1b39d072c2601d39354fe83dff8b1e5c05095aaf (patch)
tree4b38960a1bcef0de376dc5441ec6372e41341801 /src/plugins/platforms/wayland_common/qwaylanddataoffer.h
parent2e0efd201aa75121f4dd4049598f4d120811d784 (diff)
downloadqtwayland-1b39d072c2601d39354fe83dff8b1e5c05095aaf.tar.gz
Qt-ify the QtCompositor module
Currently the QtCompositor library and API do not follow the Qt API naming conventions. This commit intends to fix these inconsistencies. filenames start with q headers containing private API's end in _p public API classes begin with Q use the qt namespace macros where necessary Wayland namespace is now QtWayland wayland_wrapper classes are now private API's It's important to make these changes not just for stylistic reasons, but also because when qmake builds the module in checks for these conventions to determine how to deploy the include files. Change-Id: I8bfadeceda92a0f52cb73c704551da75540e7587 Reviewed-by: Paul Olav Tvete <paul.tvete@digia.com>
Diffstat (limited to 'src/plugins/platforms/wayland_common/qwaylanddataoffer.h')
-rw-r--r--src/plugins/platforms/wayland_common/qwaylanddataoffer.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/platforms/wayland_common/qwaylanddataoffer.h b/src/plugins/platforms/wayland_common/qwaylanddataoffer.h
index 46ca3ce3..fada683a 100644
--- a/src/plugins/platforms/wayland_common/qwaylanddataoffer.h
+++ b/src/plugins/platforms/wayland_common/qwaylanddataoffer.h
@@ -51,9 +51,12 @@
#include <stdint.h>
-class QWaylandDisplay;
struct wl_callback;
+QT_BEGIN_NAMESPACE
+
+class QWaylandDisplay;
+
class QWaylandDataOffer : public QInternalMimeData
{
public:
@@ -79,4 +82,6 @@ private:
static const struct wl_callback_listener offer_sync_callback_listener;
};
+QT_END_NAMESPACE
+
#endif