author | mickeyl <mickeyl> | 2003-12-01 22:44:38 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-12-01 22:44:38 (UTC) |
commit | 7a7683d435cfbb4fa2d6ed99fd4a94d388402aec (patch) (unidiff) | |
tree | 1a34de131d935f34dd2622e3606ba664a7783e24 /libopie2/tools | |
parent | a4a47fca8badeca2b1aae51b39295ccdc8782c4f (diff) | |
download | opie-7a7683d435cfbb4fa2d6ed99fd4a94d388402aec.zip opie-7a7683d435cfbb4fa2d6ed99fd4a94d388402aec.tar.gz opie-7a7683d435cfbb4fa2d6ed99fd4a94d388402aec.tar.bz2 |
slowly start to refactor & cleanup libopie2 before merging it with libopie1
-rwxr-xr-x | libopie2/tools/regen.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libopie2/tools/regen.py b/libopie2/tools/regen.py index 9ad5352..3779896 100755 --- a/libopie2/tools/regen.py +++ b/libopie2/tools/regen.py | |||
@@ -47,17 +47,19 @@ class DebugMapper | |||
47 | 47 | ||
48 | print >>tablecfile,""" | 48 | print >>tablecfile,""" |
49 | /* | 49 | /* |
50 | * debug value mapper - generated by regen.py - (C) Michael 'Mickey' Lauer <mickey@vanille.de> | 50 | * debug value mapper - generated by regen.py - (C) Michael 'Mickey' Lauer <mickey@vanille.de> |
51 | */ | 51 | */ |
52 | 52 | ||
53 | #include <opie2/odebug.h> | ||
54 | |||
53 | #include "%s" | 55 | #include "%s" |
54 | 56 | ||
55 | DebugMapper::DebugMapper() | 57 | DebugMapper::DebugMapper() |
56 | { | 58 | { |
57 | qDebug( "DebugMapper::DebugMapper()" ); | 59 | odebug << "DebugMapper::DebugMapper()" << oendl; |
58 | 60 | ||
59 | """ % (tablehfile.name) | 61 | """ % (tablehfile.name) |
60 | 62 | ||
61 | for line in result: | 63 | for line in result: |
62 | l = line.split() | 64 | l = line.split() |
63 | if not l[0].startswith( "#define" ) or not l[2].startswith( "0x" ): | 65 | if not l[0].startswith( "#define" ) or not l[2].startswith( "0x" ): |
@@ -69,23 +71,23 @@ for line in result: | |||
69 | print >>tablecfile,""" | 71 | print >>tablecfile,""" |
70 | }; | 72 | }; |
71 | 73 | ||
72 | 74 | ||
73 | DebugMapper::~DebugMapper() | 75 | DebugMapper::~DebugMapper() |
74 | { | 76 | { |
75 | qDebug( "DebugMapper::~DebugMapper()" ); | 77 | odebug << "DebugMapper::~DebugMapper()" << oendl; |
76 | } | 78 | } |
77 | 79 | ||
78 | 80 | ||
79 | const QString& DebugMapper::map( int value ) const | 81 | const QString& DebugMapper::map( int value ) const |
80 | { | 82 | { |
81 | QString* result = _map[ value ]; | 83 | QString* result = _map[ value ]; |
82 | 84 | ||
83 | if ( !result ) | 85 | if ( !result ) |
84 | { | 86 | { |
85 | qDebug( "DebugMapper::map() - value not found." ); | 87 | owarn << "DebugMapper::map() - value " << value << " is not found." << oendl; |
86 | return QString::null; | 88 | return QString::null; |
87 | } | 89 | } |
88 | else | 90 | else |
89 | { | 91 | { |
90 | return *result; | 92 | return *result; |
91 | } | 93 | } |