summaryrefslogtreecommitdiffstats
path: root/src/compositor/wayland_wrapper/wldatasource.cpp
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.p.agocs@nokia.com>2012-05-11 15:00:56 +0300
committerLaszlo Agocs <laszlo.p.agocs@nokia.com>2012-05-15 07:12:47 +0200
commit7e44394c478acee72327a5aa1e5e5a3c70fd8764 (patch)
tree6505584fd7527bdc869877c1da4be29634633de9 /src/compositor/wayland_wrapper/wldatasource.cpp
parent8c56409598a2a0aa5023ab276c4fa4402bb23880 (diff)
Disable some debug prints in clipboard
It is not desirable to have these printed in each and every app that uses the clipboard, especially now that the selection handling is relatively stable. Change-Id: Idf6bab915fd9a4096ca77743d597b106267b99be Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
Diffstat (limited to 'src/compositor/wayland_wrapper/wldatasource.cpp')
-rw-r--r--src/compositor/wayland_wrapper/wldatasource.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/compositor/wayland_wrapper/wldatasource.cpp b/src/compositor/wayland_wrapper/wldatasource.cpp
index 8b908d286..eab3c1e37 100644
--- a/src/compositor/wayland_wrapper/wldatasource.cpp
+++ b/src/compositor/wayland_wrapper/wldatasource.cpp
@@ -60,7 +60,6 @@ DataSource::DataSource(struct wl_client *client, uint32_t id, uint32_t time)
DataSource::~DataSource()
{
- qDebug() << "destroying source";
if (m_manager)
m_manager->sourceDestroyed(this);
wl_resource_destroy(m_data_source_resource);
@@ -94,7 +93,7 @@ void DataSource::offer(struct wl_client *client,
const char *type)
{
Q_UNUSED(client);
- qDebug() << "received offer" << type;
+ //qDebug() << "received offer" << type;
static_cast<DataSource *>(resource->data)->m_offers.append(type);
}