summaryrefslogtreecommitdiffstats
path: root/noatun-plugins
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 13:09:16 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 13:09:16 -0600
commit75f54ed56adfe86c9e6f2c932ac3453592acddd6 (patch)
tree90705dfcfda19db384a0d6bfac0c5d433e2924c8 /noatun-plugins
parent20de04ce44f63fb911103d7870d39d2782d14cda (diff)
downloadtdeaddons-75f54ed56adfe86c9e6f2c932ac3453592acddd6.tar.gz
tdeaddons-75f54ed56adfe86c9e6f2c932ac3453592acddd6.zip
Rename KServer, KSocket, KIO_EXPORT, KIOInput, KIOJob, KIOConfig, KIOBuffer, and KBuffer to avoid conflicts with KDE4
Diffstat (limited to 'noatun-plugins')
-rw-r--r--noatun-plugins/oblique/kbuffer.cpp24
-rw-r--r--noatun-plugins/oblique/kbuffer.h6
-rw-r--r--noatun-plugins/oblique/kdbt.h4
3 files changed, 17 insertions, 17 deletions
diff --git a/noatun-plugins/oblique/kbuffer.cpp b/noatun-plugins/oblique/kbuffer.cpp
index 04a28fb..6c08025 100644
--- a/noatun-plugins/oblique/kbuffer.cpp
+++ b/noatun-plugins/oblique/kbuffer.cpp
@@ -7,16 +7,16 @@
#include <iostream>
#include <iomanip>
-KBuffer::KBuffer()
+TDEBuffer::TDEBuffer()
{
bufPos = buf.end(); // will become 0 in the beginning
}
-KBuffer::~KBuffer(){
+TDEBuffer::~TDEBuffer(){
}
/** open a memory buffer */
-bool KBuffer::open(int ) {
+bool TDEBuffer::open(int ) {
// ignore mode
buf.erase(buf.begin(), buf.end()); // erase buffer
buf.reserve(8); // prevent iterators from ever being 0 and start with a reasonable mem
@@ -25,24 +25,24 @@ bool KBuffer::open(int ) {
}
/** Close buffer */
-void KBuffer::close(){
+void TDEBuffer::close(){
}
/** No descriptions */
-void KBuffer::flush(){
+void TDEBuffer::flush(){
}
/** query buffer size */
#ifdef USE_QT4
-qint64 KBuffer::size() const {
+qint64 TDEBuffer::size() const {
#else // USE_QT4
-TQ_ULONG KBuffer::size() const {
+TQ_ULONG TDEBuffer::size() const {
#endif // USE_QT4
return buf.size();
}
/** read a block of memory from buffer, advances read/write position */
-TQ_LONG KBuffer::readBlock(char* data, long unsigned int maxLen) {
+TQ_LONG TDEBuffer::readBlock(char* data, long unsigned int maxLen) {
int len;
if ((long unsigned)(buf.end()-bufPos) > maxLen)
len = maxLen;
@@ -56,7 +56,7 @@ TQ_LONG KBuffer::readBlock(char* data, long unsigned int maxLen) {
}
/** write a block of memory into buffer */
-TQ_LONG KBuffer::writeBlock(const char *data, long unsigned int len){
+TQ_LONG TDEBuffer::writeBlock(const char *data, long unsigned int len){
int pos = bufPos-buf.begin();
copy(data, data+len, inserter(buf,bufPos));
bufPos = buf.begin() + pos + len;
@@ -64,7 +64,7 @@ TQ_LONG KBuffer::writeBlock(const char *data, long unsigned int len){
}
/** read a byte */
-int KBuffer::getch() {
+int TDEBuffer::getch() {
if (bufPos!=buf.end())
return *(bufPos++);
else
@@ -72,7 +72,7 @@ int KBuffer::getch() {
}
/** write a byte */
-int KBuffer::putch(int c) {
+int TDEBuffer::putch(int c) {
int pos = bufPos-buf.begin();
buf.insert(bufPos, c);
bufPos = buf.begin() + pos + 1;
@@ -81,7 +81,7 @@ int KBuffer::putch(int c) {
/** undo last getch()
*/
-int KBuffer::ungetch(int c) {
+int TDEBuffer::ungetch(int c) {
if (bufPos!=buf.begin()) {
bufPos--;
return c;
diff --git a/noatun-plugins/oblique/kbuffer.h b/noatun-plugins/oblique/kbuffer.h
index 0341fef..18f9b3b 100644
--- a/noatun-plugins/oblique/kbuffer.h
+++ b/noatun-plugins/oblique/kbuffer.h
@@ -14,10 +14,10 @@
*@author Eray Ozkural (exa)
*/
-class KBuffer : public TQIODevice {
+class TDEBuffer : public TQIODevice {
public:
- KBuffer();
- ~KBuffer();
+ TDEBuffer();
+ ~TDEBuffer();
/** open a memory buffer */
bool open(int mode);
/** read in a block of memory */
diff --git a/noatun-plugins/oblique/kdbt.h b/noatun-plugins/oblique/kdbt.h
index ec3f25e..a9baa9e 100644
--- a/noatun-plugins/oblique/kdbt.h
+++ b/noatun-plugins/oblique/kdbt.h
@@ -33,7 +33,7 @@ public:
// }
/** set "thang" to the contents of obj */
void set(const T& obj) {
-// KBuffer buffer(thang);
+// TDEBuffer buffer(thang);
TQDataStream ds(&thang);
ds << obj;
// std::cerr << "thang size " << thang.size() << endl;
@@ -53,7 +53,7 @@ public:
private:
/** Internal data */
// TQByteArray thang;
- KBuffer thang;
+ TDEBuffer thang;
};
#endif