summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/libiris/cutestuff/util
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/jabber/libiris/cutestuff/util')
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/base64.cpp2
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/base64.h2
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/bytestream.cpp2
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/bytestream.h4
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/cipher.cpp10
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/cipher.h4
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/qrandom.cpp4
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/qrandom.h2
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/safedelete.cpp4
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/safedelete.h4
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/sha1.cpp2
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/sha1.h2
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.cpp12
-rw-r--r--kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.h2
14 files changed, 28 insertions, 28 deletions
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/base64.cpp b/kopete/protocols/jabber/libiris/cutestuff/util/base64.cpp
index 06df3f73..39b2c57f 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/base64.cpp
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/base64.cpp
@@ -18,7 +18,7 @@
*
*/
-#include"base64.h"
+#include "base64.h"
// CS_NAMESPACE_BEGIN
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/base64.h b/kopete/protocols/jabber/libiris/cutestuff/util/base64.h
index eaa2ff5b..6a817133 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/base64.h
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/base64.h
@@ -21,7 +21,7 @@
#ifndef CS_BASE64_H
#define CS_BASE64_H
-#include<tqstring.h>
+#include <tqstring.h>
// CS_NAMESPACE_BEGIN
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/bytestream.cpp b/kopete/protocols/jabber/libiris/cutestuff/util/bytestream.cpp
index e78c2f9a..72cbb614 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/bytestream.cpp
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/bytestream.cpp
@@ -18,7 +18,7 @@
*
*/
-#include"bytestream.h"
+#include "bytestream.h"
// CS_NAMESPACE_BEGIN
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/bytestream.h b/kopete/protocols/jabber/libiris/cutestuff/util/bytestream.h
index 0ffab15b..e64ce68d 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/bytestream.h
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/bytestream.h
@@ -21,8 +21,8 @@
#ifndef CS_BYTESTREAM_H
#define CS_BYTESTREAM_H
-#include<tqobject.h>
-#include<tqcstring.h>
+#include <tqobject.h>
+#include <tqcstring.h>
// CS_NAMESPACE_BEGIN
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/cipher.cpp b/kopete/protocols/jabber/libiris/cutestuff/util/cipher.cpp
index 814b6e9d..98f2944a 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/cipher.cpp
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/cipher.cpp
@@ -18,12 +18,12 @@
*
*/
-#include"cipher.h"
+#include "cipher.h"
-#include<openssl/evp.h>
-#include<openssl/rsa.h>
-#include"bytestream.h"
-#include"tqrandom.h"
+#include <openssl/evp.h>
+#include <openssl/rsa.h>
+#include "bytestream.h"
+#include "tqrandom.h"
static bool lib_encryptArray(const EVP_CIPHER *type, const TQByteArray &buf, const TQByteArray &key, const TQByteArray &iv, bool pad, TQByteArray *out)
{
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/cipher.h b/kopete/protocols/jabber/libiris/cutestuff/util/cipher.h
index 02c7606c..ad1c052f 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/cipher.h
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/cipher.h
@@ -21,8 +21,8 @@
#ifndef CS_CIPHER_H
#define CS_CIPHER_H
-#include<tqstring.h>
-#include<tqcstring.h>
+#include <tqstring.h>
+#include <tqcstring.h>
namespace Cipher
{
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/qrandom.cpp b/kopete/protocols/jabber/libiris/cutestuff/util/qrandom.cpp
index 9805de2f..ed1d1a62 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/qrandom.cpp
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/qrandom.cpp
@@ -1,6 +1,6 @@
-#include"qrandom.h"
+#include "qrandom.h"
-#include<stdlib.h>
+#include <stdlib.h>
uchar QRandom::randomChar()
{
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/qrandom.h b/kopete/protocols/jabber/libiris/cutestuff/util/qrandom.h
index b877c1f2..ed98c263 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/qrandom.h
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/qrandom.h
@@ -1,7 +1,7 @@
#ifndef CS_TQRANDOM_H
#define CS_TQRANDOM_H
-#include<tqcstring.h>
+#include <tqcstring.h>
class QRandom
{
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/safedelete.cpp b/kopete/protocols/jabber/libiris/cutestuff/util/safedelete.cpp
index 8ba6272d..7f5dc901 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/safedelete.cpp
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/safedelete.cpp
@@ -1,6 +1,6 @@
-#include"safedelete.h"
+#include "safedelete.h"
-#include<tqtimer.h>
+#include <tqtimer.h>
//----------------------------------------------------------------------------
// SafeDelete
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/safedelete.h b/kopete/protocols/jabber/libiris/cutestuff/util/safedelete.h
index ce7a789a..e1e06da1 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/safedelete.h
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/safedelete.h
@@ -1,8 +1,8 @@
#ifndef SAFEDELETE_H
#define SAFEDELETE_H
-#include<tqobject.h>
-#include<tqobjectlist.h>
+#include <tqobject.h>
+#include <tqobjectlist.h>
class SafeDelete;
class SafeDeleteLock
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/sha1.cpp b/kopete/protocols/jabber/libiris/cutestuff/util/sha1.cpp
index 0fefd995..bab37dd4 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/sha1.cpp
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/sha1.cpp
@@ -18,7 +18,7 @@
*
*/
-#include"sha1.h"
+#include "sha1.h"
// CS_NAMESPACE_BEGIN
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/sha1.h b/kopete/protocols/jabber/libiris/cutestuff/util/sha1.h
index 093037d3..8d6320eb 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/sha1.h
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/sha1.h
@@ -21,7 +21,7 @@
#ifndef CS_SHA1_H
#define CS_SHA1_H
-#include<tqstring.h>
+#include <tqstring.h>
// CS_NAMESPACE_BEGIN
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.cpp b/kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.cpp
index 0c8b46df..7dbb0dd3 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.cpp
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.cpp
@@ -18,13 +18,13 @@
*
*/
-#include"showtextdlg.h"
+#include "showtextdlg.h"
-#include<tqlayout.h>
-#include<tqtextedit.h>
-#include<tqpushbutton.h>
-#include<tqfile.h>
-#include<tqtextstream.h>
+#include <tqlayout.h>
+#include <tqtextedit.h>
+#include <tqpushbutton.h>
+#include <tqfile.h>
+#include <tqtextstream.h>
ShowTextDlg::ShowTextDlg(const TQString &fname, bool rich, TQWidget *parent, const char *name)
diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.h b/kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.h
index f8eb7095..060dfa60 100644
--- a/kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.h
+++ b/kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.h
@@ -21,7 +21,7 @@
#ifndef CS_SHOWTEXTDLG_H
#define CS_SHOWTEXTDLG_H
-#include<tqdialog.h>
+#include <tqdialog.h>
class ShowTextDlg : public TQDialog
{