diff options
author | Slávek Banko <[email protected]> | 2015-06-26 13:06:44 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2015-06-26 13:19:50 +0200 |
commit | ec6378cdd8ea847ecdd81f8976b5adf2551cef56 (patch) | |
tree | 636dd1ce42232fcc6f6845a824a3faaa691ef4fa /kopete | |
parent | 82dd739ceb246c8d8d10faf03b1a2267d8352d16 (diff) | |
download | tdenetwork-ec6378cdd8ea847ecdd81f8976b5adf2551cef56.tar.gz tdenetwork-ec6378cdd8ea847ecdd81f8976b5adf2551cef56.zip |
Fix FTBFS with clang
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'kopete')
-rw-r--r-- | kopete/libkopete/kopeteproperties.cpp | 4 | ||||
-rw-r--r-- | kopete/libkopete/ui/metacontactselectorwidget.h | 4 | ||||
-rw-r--r-- | kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp | 1 | ||||
-rw-r--r-- | kopete/protocols/groupwise/libgroupwise/qcatlshandler.h | 4 |
4 files changed, 8 insertions, 5 deletions
diff --git a/kopete/libkopete/kopeteproperties.cpp b/kopete/libkopete/kopeteproperties.cpp index 3ed9d044..4565a0e1 100644 --- a/kopete/libkopete/kopeteproperties.cpp +++ b/kopete/libkopete/kopeteproperties.cpp @@ -14,14 +14,14 @@ ************************************************************************* */ -#include "kopeteproperties.h" - #include <kdebug.h> #include <tqdom.h> #include <tqvariant.h> #include <typeinfo> +#include "kopeteproperties.h" + namespace Kopete { namespace Properties { diff --git a/kopete/libkopete/ui/metacontactselectorwidget.h b/kopete/libkopete/ui/metacontactselectorwidget.h index fb0f1e17..d084237a 100644 --- a/kopete/libkopete/ui/metacontactselectorwidget.h +++ b/kopete/libkopete/ui/metacontactselectorwidget.h @@ -23,10 +23,10 @@ #include "kopetelistviewitem.h" #include "kopete_export.h" -class Kopete::MetaContact; - namespace Kopete { + class MetaContact; + namespace UI { diff --git a/kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp b/kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp index 75976df5..2902b350 100644 --- a/kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp +++ b/kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp @@ -16,6 +16,7 @@ #include <arpa/inet.h> #include <netdb.h> +#include <sys/socket.h> #include <tqradiobutton.h> diff --git a/kopete/protocols/groupwise/libgroupwise/qcatlshandler.h b/kopete/protocols/groupwise/libgroupwise/qcatlshandler.h index 1680a484..f83b01bb 100644 --- a/kopete/protocols/groupwise/libgroupwise/qcatlshandler.h +++ b/kopete/protocols/groupwise/libgroupwise/qcatlshandler.h @@ -23,7 +23,9 @@ //#include <tqtimer.h> #include "tlshandler.h" -class TQCA::TLS; +namespace TQCA { + class TLS; +} class TQCATLSHandler : public TLSHandler { |