diff options
author | roman <[email protected]> | 2020-07-31 12:22:43 +0000 |
---|---|---|
committer | roman <[email protected]> | 2020-07-31 12:22:43 +0000 |
commit | 0cf6d999417faa59cba940897b0a62430f2cd685 (patch) | |
tree | 3f517b2901b006eab613d8e03323ca7c3d1ad3b6 /kopete/protocols/groupwise/libgroupwise/qca | |
parent | dfdf36e216921399afab86d0d683ef39b88adeab (diff) | |
parent | 767fedec73a3536a0d47ee497d6be0d2e4461108 (diff) | |
download | tdenetwork-bug/3014/krfb.tar.gz tdenetwork-bug/3014/krfb.zip |
Merge branch 'master' into bug/3014/krfbbug/3014/krfb
Diffstat (limited to 'kopete/protocols/groupwise/libgroupwise/qca')
-rw-r--r-- | kopete/protocols/groupwise/libgroupwise/qca/src/CMakeLists.txt | 6 | ||||
-rw-r--r-- | kopete/protocols/groupwise/libgroupwise/qca/src/Makefile.am | 8 | ||||
-rw-r--r-- | kopete/protocols/groupwise/libgroupwise/qca/src/tqca.cpp (renamed from kopete/protocols/groupwise/libgroupwise/qca/src/qca.cpp) | 8 | ||||
-rw-r--r-- | kopete/protocols/groupwise/libgroupwise/qca/src/tqca.h (renamed from kopete/protocols/groupwise/libgroupwise/qca/src/qca.h) | 2 | ||||
-rw-r--r-- | kopete/protocols/groupwise/libgroupwise/qca/src/tqcaprovider.h (renamed from kopete/protocols/groupwise/libgroupwise/qca/src/qcaprovider.h) | 4 |
5 files changed, 14 insertions, 14 deletions
diff --git a/kopete/protocols/groupwise/libgroupwise/qca/src/CMakeLists.txt b/kopete/protocols/groupwise/libgroupwise/qca/src/CMakeLists.txt index 9c74e339..c14c9761 100644 --- a/kopete/protocols/groupwise/libgroupwise/qca/src/CMakeLists.txt +++ b/kopete/protocols/groupwise/libgroupwise/qca/src/CMakeLists.txt @@ -15,8 +15,8 @@ include_directories( ) -##### groupwise_qca (static) #################### +##### groupwise_tqca (static) ################### -tde_add_library( groupwise_qca STATIC_PIC AUTOMOC - SOURCES qca.cpp +tde_add_library( groupwise_tqca STATIC_PIC AUTOMOC + SOURCES tqca.cpp ) diff --git a/kopete/protocols/groupwise/libgroupwise/qca/src/Makefile.am b/kopete/protocols/groupwise/libgroupwise/qca/src/Makefile.am index e9a361d9..4441fe33 100644 --- a/kopete/protocols/groupwise/libgroupwise/qca/src/Makefile.am +++ b/kopete/protocols/groupwise/libgroupwise/qca/src/Makefile.am @@ -1,8 +1,8 @@ METASOURCES = AUTO -noinst_LTLIBRARIES = libqca.la +noinst_LTLIBRARIES = libtqca.la INCLUDES = $(all_includes) -libqca_la_SOURCES = \ - qca.cpp -# libqca_la_LIBADD = -lqt-mt +libtqca_la_SOURCES = \ + tqca.cpp +# libtqca_la_LIBADD = -lqt-mt diff --git a/kopete/protocols/groupwise/libgroupwise/qca/src/qca.cpp b/kopete/protocols/groupwise/libgroupwise/qca/src/tqca.cpp index 3981964a..5656addf 100644 --- a/kopete/protocols/groupwise/libgroupwise/qca/src/qca.cpp +++ b/kopete/protocols/groupwise/libgroupwise/qca/src/tqca.cpp @@ -1,5 +1,5 @@ /* - * qca.cpp - TQt Cryptographic Architecture + * tqca.cpp - TQt Cryptographic Architecture * Copyright (C) 2003 Justin Karneges * * This library is free software; you can redistribute it and/or @@ -18,7 +18,7 @@ * */ -#include "qca.h" +#include "tqca.h" #include <tqptrlist.h> #include <tqdir.h> @@ -30,7 +30,7 @@ #include <tqapplication.h> #include <tqguardedptr.h> #include <stdlib.h> -#include "qcaprovider.h" +#include "tqcaprovider.h" #if defined(Q_OS_WIN32) #define PLUGIN_EXT "dll" @@ -1483,4 +1483,4 @@ TQByteArray SASL::readOutgoing() return a; } -#include "qca.moc" +#include "tqca.moc" diff --git a/kopete/protocols/groupwise/libgroupwise/qca/src/qca.h b/kopete/protocols/groupwise/libgroupwise/qca/src/tqca.h index 7a8a3af4..701aeb31 100644 --- a/kopete/protocols/groupwise/libgroupwise/qca/src/qca.h +++ b/kopete/protocols/groupwise/libgroupwise/qca/src/tqca.h @@ -1,5 +1,5 @@ /* - * qca.h - TQt Cryptographic Architecture + * tqca.h - TQt Cryptographic Architecture * Copyright (C) 2003 Justin Karneges * * This library is free software; you can redistribute it and/or diff --git a/kopete/protocols/groupwise/libgroupwise/qca/src/qcaprovider.h b/kopete/protocols/groupwise/libgroupwise/qca/src/tqcaprovider.h index b0e5385a..f88d1b4f 100644 --- a/kopete/protocols/groupwise/libgroupwise/qca/src/qcaprovider.h +++ b/kopete/protocols/groupwise/libgroupwise/qca/src/tqcaprovider.h @@ -1,5 +1,5 @@ /* - * qcaprovider.h - TQCA Plugin API + * tqcaprovider.h - TQCA Plugin API * Copyright (C) 2003 Justin Karneges * * This library is free software; you can redistribute it and/or @@ -26,7 +26,7 @@ #include <tqdatetime.h> #include <tqobject.h> #include <tqhostaddress.h> -#include "qca.h" +#include "tqca.h" #define TQCA_PLUGIN_VERSION 1 |