summaryrefslogtreecommitdiff
path: root/noncore/apps/tinykate/libkate/interfaces
Unidiff
Diffstat (limited to 'noncore/apps/tinykate/libkate/interfaces') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/tinykate/libkate/interfaces/document.h6
-rw-r--r--noncore/apps/tinykate/libkate/interfaces/view.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/noncore/apps/tinykate/libkate/interfaces/document.h b/noncore/apps/tinykate/libkate/interfaces/document.h
index cbfd1b3..af885f1 100644
--- a/noncore/apps/tinykate/libkate/interfaces/document.h
+++ b/noncore/apps/tinykate/libkate/interfaces/document.h
@@ -27,13 +27,13 @@
27 27
28#ifndef _KATE_DOCUMENT_INCLUDE_ 28#ifndef _KATE_DOCUMENT_INCLUDE_
29#define _KATE_DOCUMENT_INCLUDE_ 29#define _KATE_DOCUMENT_INCLUDE_
30 30
31#include <ktexteditor.h> 31#include <ktexteditor.h>
32 32
33class KConfig; 33class KateConfig;
34 34
35namespace Kate 35namespace Kate
36{ 36{
37 37
38/** internal class for document bookmarks. */ 38/** internal class for document bookmarks. */
39class Mark 39class Mark
@@ -60,16 +60,16 @@ class Document : public KTextEditor::Document
60 /** Save document config. 60 /** Save document config.
61 */ 61 */
62 virtual void writeConfig () { ; }; 62 virtual void writeConfig () { ; };
63 63
64 /** Read document session config. 64 /** Read document session config.
65 */ 65 */
66 virtual void readSessionConfig (KConfig *) { ; }; 66 virtual void readSessionConfig (KateConfig *) { ; };
67 /** Save document session config. 67 /** Save document session config.
68 */ 68 */
69 virtual void writeSessionConfig (KConfig *) { ; }; 69 virtual void writeSessionConfig (KateConfig *) { ; };
70 70
71 /** Returns the document ID. 71 /** Returns the document ID.
72 */ 72 */
73 virtual uint docID () { return 0L; }; 73 virtual uint docID () { return 0L; };
74 74
75 /** Defines possible mark types. A line can have marks of different types. 75 /** Defines possible mark types. A line can have marks of different types.
diff --git a/noncore/apps/tinykate/libkate/interfaces/view.h b/noncore/apps/tinykate/libkate/interfaces/view.h
index 5b24bb5..5846395 100644
--- a/noncore/apps/tinykate/libkate/interfaces/view.h
+++ b/noncore/apps/tinykate/libkate/interfaces/view.h
@@ -27,13 +27,13 @@
27 27
28#ifndef _KATE_VIEW_INCLUDE_ 28#ifndef _KATE_VIEW_INCLUDE_
29#define _KATE_VIEW_INCLUDE_ 29#define _KATE_VIEW_INCLUDE_
30 30
31#include <ktexteditor.h> 31#include <ktexteditor.h>
32 32
33class KConfig; 33class KateConfig;
34 34
35namespace Kate 35namespace Kate
36{ 36{
37 37
38class Document; 38class Document;
39class Mark; 39class Mark;
@@ -76,14 +76,14 @@ class View : public KTextEditor::View
76 public: 76 public:
77 // read/save config of the view 77 // read/save config of the view
78 virtual void readConfig () { ; }; 78 virtual void readConfig () { ; };
79 virtual void writeConfig () { ; }; 79 virtual void writeConfig () { ; };
80 80
81 // read/save sessionconfig of the view 81 // read/save sessionconfig of the view
82 virtual void readSessionConfig (KConfig *) { ; }; 82 virtual void readSessionConfig (KateConfig *) { ; };
83 virtual void writeSessionConfig (KConfig *) { ; }; 83 virtual void writeSessionConfig (KateConfig *) { ; };
84 84
85 public slots: 85 public slots:
86 // some simply key commands 86 // some simply key commands
87 virtual void keyReturn () { ; }; 87 virtual void keyReturn () { ; };
88 virtual void keyDelete () { ; }; 88 virtual void keyDelete () { ; };
89 virtual void backspace () { ; }; 89 virtual void backspace () { ; };