summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/CEncoding.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-reader/CEncoding.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-reader/CEncoding.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/noncore/apps/opie-reader/CEncoding.cpp b/noncore/apps/opie-reader/CEncoding.cpp
index 60a1057..cf2e01b 100644
--- a/noncore/apps/opie-reader/CEncoding.cpp
+++ b/noncore/apps/opie-reader/CEncoding.cpp
@@ -2,8 +2,8 @@
#include "CEncoding.h"
-void CUtf8::getch(tchar& ch, CStyle& sty)
+void CUtf8::getch(tchar& ch, CStyle& sty, unsigned long& pos)
{
tchar ret;
- parent->getch(ret, sty);
+ parent->getch(ret, sty, pos);
if (ret == UEOF)
{
@@ -19,5 +19,5 @@ void CUtf8::getch(tchar& ch, CStyle& sty)
ret <<= 6;
tchar iret;
- parent->getch(iret, sty);
+ parent->getch(iret, sty, pos);
ret += iret & 0x3f;
flags <<= 1;
@@ -44,8 +44,8 @@ void CUtf8::getch(tchar& ch, CStyle& sty)
}
-void CUcs16be::getch(tchar& ch, CStyle& sty)
+void CUcs16be::getch(tchar& ch, CStyle& sty, unsigned long& pos)
{
tchar iret;
- parent->getch(iret, sty);
+ parent->getch(iret, sty, pos);
if (iret == UEOF)
{
@@ -54,12 +54,12 @@ void CUcs16be::getch(tchar& ch, CStyle& sty)
}
tchar ret = iret;
- parent->getch(iret, sty);
+ parent->getch(iret, sty, pos);
ch = (ret << 8) + iret;
}
-void CUcs16le::getch(tchar& ch, CStyle& sty)
+void CUcs16le::getch(tchar& ch, CStyle& sty, unsigned long& pos)
{
tchar iret;
- parent->getch(iret, sty);
+ parent->getch(iret, sty, pos);
if (iret == UEOF)
{
@@ -68,12 +68,12 @@ void CUcs16le::getch(tchar& ch, CStyle& sty)
}
tchar ret = iret;
- parent->getch(iret, sty);
+ parent->getch(iret, sty, pos);
ch = ret + (iret << 8);
}
-void Ccp1252::getch(tchar& ch, CStyle& sty)
+void Ccp1252::getch(tchar& ch, CStyle& sty, unsigned long& pos)
{
tchar iret;
- parent->getch(iret, sty);
+ parent->getch(iret, sty, pos);
ch = iret;
switch (ch)
@@ -168,7 +168,7 @@ void Ccp1252::getch(tchar& ch, CStyle& sty)
}
-void CPalm::getch(tchar& ch, CStyle& sty)
+void CPalm::getch(tchar& ch, CStyle& sty, unsigned long& pos)
{
- Ccp1252::getch(ch, sty);
+ Ccp1252::getch(ch, sty, pos);
switch (ch)
{
@@ -196,8 +196,8 @@ void CPalm::getch(tchar& ch, CStyle& sty)
}
-void CAscii::getch(tchar& ch, CStyle& sty)
+void CAscii::getch(tchar& ch, CStyle& sty, unsigned long& pos)
{
tchar iret;
- parent->getch(iret, sty);
+ parent->getch(iret, sty, pos);
if (iret == UEOF)
{