diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
commit | 10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch) | |
tree | 4bc444c00a79e88105f2cfce5b6209994c413ca0 /kate/part/katebuffer.h | |
parent | 307136d8eef0ba133b78ceee8e901138d4c996a1 (diff) | |
download | tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kate/part/katebuffer.h')
-rw-r--r-- | kate/part/katebuffer.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kate/part/katebuffer.h b/kate/part/katebuffer.h index 0f6672f0b..602571c53 100644 --- a/kate/part/katebuffer.h +++ b/kate/part/katebuffer.h @@ -40,7 +40,7 @@ class KateFileLoader; class TQTextCodec; /** - * The KateBufBlock class tqcontains an amount of data representing + * The KateBufBlock class contains an amount of data representing * a certain number of lines. * * @author Waldo Bastian <bastian@kde.org> @@ -116,7 +116,7 @@ class KateBufBlock void removeLine(uint i); /** - * mark this block as dirty, will tqinvalidate the swap data + * mark this block as dirty, will invalidate the swap data * insert/removeLine will mark the block dirty itself */ void markDirty (); @@ -338,7 +338,7 @@ class KateBufBlockList * @author Waldo Bastian <bastian@kde.org> * @author Christoph Cullmann <cullmann@kde.org> */ -class KateBuffer : public TQObject +class KateBuffer : public QObject { Q_OBJECT @@ -487,7 +487,7 @@ class KateBuffer : public TQObject */ inline KateTextLine::Ptr line(uint i) { - KateBufBlock *buf = tqfindBlock(i); + KateBufBlock *buf = findBlock(i); if (!buf) return 0; @@ -511,7 +511,7 @@ class KateBuffer : public TQObject */ inline KateTextLine::Ptr plainLine(uint i) { - KateBufBlock *buf = tqfindBlock(i); + KateBufBlock *buf = findBlock(i); if (!buf) return 0; @@ -529,7 +529,7 @@ class KateBuffer : public TQObject * index pointer gets filled with index of block in m_blocks * index only valid if returned block != 0 ! */ - KateBufBlock *tqfindBlock (uint i, uint *index = 0) + KateBufBlock *findBlock (uint i, uint *index = 0) { // out of range ! if (i >= m_lines) @@ -543,10 +543,10 @@ class KateBuffer : public TQObject return m_blocks[m_lastFoundBlock]; } - return tqfindBlock_internal (i, index); + return findBlock_internal (i, index); } - KateBufBlock *tqfindBlock_internal (uint i, uint *index = 0); + KateBufBlock *findBlock_internal (uint i, uint *index = 0); public: /** @@ -591,7 +591,7 @@ class KateBuffer : public TQObject /** * Invalidate highlighting of whole buffer. */ - void tqinvalidateHighlighting(); + void invalidateHighlighting(); KateCodeFoldingTree *foldingTree () { return &m_regionTree; }; @@ -611,7 +611,7 @@ class KateBuffer : public TQObject * @returns true when the highlighting in the next block needs to be updated, * false otherwise. */ - bool doHighlight (KateBufBlock *buf, uint from, uint to, bool tqinvalidate); + bool doHighlight (KateBufBlock *buf, uint from, uint to, bool invalidate); signals: /** @@ -648,7 +648,7 @@ class KateBuffer : public TQObject uint m_lastInSyncBlock; /** - * last block found by tqfindBlock, there to make searching faster + * last block found by findBlock, there to make searching faster */ uint m_lastFoundBlock; @@ -706,4 +706,4 @@ class KateBuffer : public TQObject #endif -// kate: space-indent on; indent-width 2; tqreplace-tabs on; +// kate: space-indent on; indent-width 2; replace-tabs on; |