summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/keytrans.cpp
authorchicken <chicken>2004-03-01 19:15:57 (UTC)
committer chicken <chicken>2004-03-01 19:15:57 (UTC)
commitfb0981f47e529f9d1dd77fa005ffa3c3ecedff67 (patch) (side-by-side diff)
treec338eb54935bbbe8966d5a642303d4aae3c1f0c8 /noncore/apps/opie-console/keytrans.cpp
parentb5a544bf520ce6d0d8f7b314720e6a703079dc1d (diff)
downloadopie-fb0981f47e529f9d1dd77fa005ffa3c3ecedff67.zip
opie-fb0981f47e529f9d1dd77fa005ffa3c3ecedff67.tar.gz
opie-fb0981f47e529f9d1dd77fa005ffa3c3ecedff67.tar.bz2
fix includes
Diffstat (limited to 'noncore/apps/opie-console/keytrans.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/keytrans.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/keytrans.cpp b/noncore/apps/opie-console/keytrans.cpp
index d569ae0..45a7960 100644
--- a/noncore/apps/opie-console/keytrans.cpp
+++ b/noncore/apps/opie-console/keytrans.cpp
@@ -404,25 +404,25 @@ Loop:
buf->close();
return;
ERROR:
while (sym != SYMEol && sym != SYMEof) getSymbol(); // eoln
goto Loop;
}
KeyTrans* KeyTrans::defaultKeyTrans()
{
QCString txt =
-#include "default.keytab.h"
+ #include "default.keytab.h"
;
QBuffer buf(txt);
return fromDevice("[buildin]",buf);
}
KeyTrans* KeyTrans::fromFile(const char* path)
{
QFile file(path);
return fromDevice(path,file);
}
// local symbol tables ---------------------------------------------------------------------
@@ -688,19 +688,18 @@ void TestTokenizer(QBuffer &buf)
// Test tokenizer
while (getSymbol(buf)) ReportToken();
buf.close();
}
void test()
{
// Opening sequence
QCString txt =
-#include "default.keytab.h"
;
QBuffer buf(txt);
if (0) TestTokenizer(buf);
if (1) { KeyTrans kt; kt.scanTable(buf); }
}
*/