summaryrefslogtreecommitdiffstats
path: root/src/pvs.cpp
diff options
context:
space:
mode:
authorJohann Latocha2010-09-01 01:02:39 +0200
committerJohann Latocha2010-09-01 01:02:39 +0200
commitf6fca1c3c5279c820be3860b0074831f920219d6 (patch)
tree66c9568114734b8a4e7fa55c1e1626f2ccefa243 /src/pvs.cpp
parentMissing return statement (diff)
downloadpvs-f6fca1c3c5279c820be3860b0074831f920219d6.tar.gz
pvs-f6fca1c3c5279c820be3860b0074831f920219d6.tar.xz
pvs-f6fca1c3c5279c820be3860b0074831f920219d6.zip
All printf() replaced with qDebug()
Diffstat (limited to 'src/pvs.cpp')
-rwxr-xr-xsrc/pvs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pvs.cpp b/src/pvs.cpp
index 07b9005..2aaec8a 100755
--- a/src/pvs.cpp
+++ b/src/pvs.cpp
@@ -54,9 +54,9 @@ PVS::PVS() :
new PvsAdaptor(this);
QDBusConnection dbus = QDBusConnection::sessionBus();
if (!dbus.registerObject("/", this))
- printf("[ERROR] DBus: Could not register object\n");
+ qDebug("[ERROR] DBus: Could not register object");
if (!dbus.registerService("org.openslx.pvs"))
- printf("[ERROR] DBus: Could not register service\n");
+ qDebug("[ERROR] DBus: Could not register service");
_sdClient = new PVSServiceDiscovery(this);