summaryrefslogtreecommitdiffstats
path: root/khexedit/lib/controller/keditor.h
diff options
context:
space:
mode:
Diffstat (limited to 'khexedit/lib/controller/keditor.h')
-rw-r--r--khexedit/lib/controller/keditor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/khexedit/lib/controller/keditor.h b/khexedit/lib/controller/keditor.h
index e4fa06c..6621cb4 100644
--- a/khexedit/lib/controller/keditor.h
+++ b/khexedit/lib/controller/keditor.h
@@ -26,7 +26,7 @@
namespace KHE
{
-class KBufferCursor;
+class TDEBufferCursor;
class KEditor : public KController
{
@@ -34,7 +34,7 @@ class KEditor : public KController
enum KEditAction { CharDelete, WordDelete, CharBackspace, WordBackspace };
protected:
- KEditor( KBufferCursor *BC, KHexEdit *HE, KController *P );
+ KEditor( TDEBufferCursor *BC, KHexEdit *HE, KController *P );
public: // API
virtual bool handleKeyPress( TQKeyEvent *KeyEvent );
@@ -44,7 +44,7 @@ class KEditor : public KController
void doEditAction( KEditAction Action );
protected:
- KBufferCursor *BufferCursor;
+ TDEBufferCursor *BufferCursor;
};
}