summaryrefslogtreecommitdiffstats
path: root/lib/kformula/scripts/bycodes.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kformula/scripts/bycodes.py')
-rwxr-xr-xlib/kformula/scripts/bycodes.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/kformula/scripts/bycodes.py b/lib/kformula/scripts/bycodes.py
index 16d719599..45b787a0f 100755
--- a/lib/kformula/scripts/bycodes.py
+++ b/lib/kformula/scripts/bycodes.py
@@ -7,12 +7,12 @@
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
-
+
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
-
+
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
@@ -20,7 +20,7 @@
"""
import sys
import string
-import qt
+from TQt import qt
def decode( fd, font, line ):
begin = string.find( line, '"' )
@@ -39,10 +39,10 @@ def decode( fd, font, line ):
char_list.append( string.atoi( second, 16 ) )
else:
char_list.append( string.atoi ( unicode, 16 ) )
- fm = qt.QFontMetrics( qt.QFont( font ) )
+ fm = qt.TQFontMetrics( qt.TQFont( font ) )
in_font = True
for c in char_list:
- if not fm.inFont( qt.QChar( c ) ):
+ if not fm.inFont( qt.TQChar( c ) ):
in_font = False
fd.write( unicode + ' ' + str( in_font ) + '\n')
@@ -54,9 +54,9 @@ def parse( file, font ):
if string.find( line, 'name' ) != -1:
decode( fd2, font, line )
line = fd.readline()
-
+
if __name__ == '__main__':
- a = qt.QApplication( sys.argv )
+ a = qt.TQApplication( sys.argv )
if len( sys.argv ) == 2:
sys.argv.append( 'Arev Sans' )
parse ( sys.argv[1], sys.argv[2] )