summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/CEncoding.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-reader/CEncoding.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-reader/CEncoding.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/noncore/apps/opie-reader/CEncoding.h b/noncore/apps/opie-reader/CEncoding.h
index 1eee29e..86562e7 100644
--- a/noncore/apps/opie-reader/CEncoding.h
+++ b/noncore/apps/opie-reader/CEncoding.h
@@ -19,3 +19,3 @@ class CUtf8 : public CEncoding
public:
- tchar getch();
+ void getch(tchar& ch, CStyle& sty);
};
@@ -25,3 +25,3 @@ class CUcs16be : public CEncoding
public:
- tchar getch();
+ void getch(tchar& ch, CStyle& sty);
};
@@ -31,3 +31,3 @@ class CUcs16le : public CEncoding
public:
- tchar getch();
+ void getch(tchar& ch, CStyle& sty);
};
@@ -37,3 +37,3 @@ class Ccp1252 : public CEncoding
public:
- virtual tchar getch();
+ void getch(tchar& ch, CStyle& sty);
};
@@ -43,3 +43,3 @@ class CPalm : public Ccp1252
public:
- tchar getch();
+ void getch(tchar& ch, CStyle& sty);
};
@@ -49,3 +49,3 @@ class CAscii : public CEncoding
public:
- tchar getch();
+ void getch(tchar& ch, CStyle& sty);
};