diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2023-01-21 21:52:20 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2023-01-22 01:58:18 +0100 |
commit | 135d005014a1e85295af4e379f026a361537ae5f (patch) | |
tree | c70f25a5248237a5c4676c928fd400b10aa7a641 /lib/kformula/scripts/bycodes.py | |
parent | 596d0f7b9ed99de0814acfb835cc8945cee37405 (diff) | |
download | koffice-135d0050.tar.gz koffice-135d0050.zip |
Update python scripts for PyTQt.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'lib/kformula/scripts/bycodes.py')
-rwxr-xr-x | lib/kformula/scripts/bycodes.py | 14 |
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] ) |