summaryrefslogtreecommitdiff
path: root/core/obex/obeximpl.cpp
Unidiff
Diffstat (limited to 'core/obex/obeximpl.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/obex/obeximpl.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/obex/obeximpl.cpp b/core/obex/obeximpl.cpp
index 12a078f..5bfc779 100644
--- a/core/obex/obeximpl.cpp
+++ b/core/obex/obeximpl.cpp
@@ -1,17 +1,19 @@
1#include "obexhandler.h" 1#include "obexhandler.h"
2#include "obeximpl.h" 2#include "obeximpl.h"
3 3
4using namespace OpieObex; 4using namespace OpieObex;
5 5
6/* TRANSLATOR OpieObex::ObexImpl */
7
6ObexImpl::ObexImpl() { 8ObexImpl::ObexImpl() {
7 m_handler = new ObexHandler; 9 m_handler = new ObexHandler;
8} 10}
9ObexImpl::~ObexImpl() { 11ObexImpl::~ObexImpl() {
10 delete m_handler; 12 delete m_handler;
11} 13}
12QRESULT ObexImpl::queryInterface( const QUuid& uuid, QUnknownInterface **iface ) { 14QRESULT ObexImpl::queryInterface( const QUuid& uuid, QUnknownInterface **iface ) {
13 *iface = 0; 15 *iface = 0;
14 if ( uuid == IID_QUnknown ) { 16 if ( uuid == IID_QUnknown ) {
15 *iface = this; 17 *iface = this;
16 }else if ( uuid == IID_ObexInterface ) 18 }else if ( uuid == IID_ObexInterface )
17 *iface = this; 19 *iface = this;