diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-05-23 01:32:45 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-05-23 01:32:45 -0500 |
commit | 8ab8e5edc0b76c0534d1cfa348e2ae2a247a5584 (patch) | |
tree | 5a825ee22a4dcc87968308968818a1888594a62b /lib/kwmf | |
parent | a000f8bd5ca6a18bdada1fefd24ecdcc772026e2 (diff) | |
download | koffice-8ab8e5edc0b76c0534d1cfa348e2ae2a247a5584.tar.gz koffice-8ab8e5edc0b76c0534d1cfa348e2ae2a247a5584.zip |
Fix incorrect characters.
Diffstat (limited to 'lib/kwmf')
-rw-r--r-- | lib/kwmf/kowmfreadprivate.cc | 2 | ||||
-rw-r--r-- | lib/kwmf/qwmf.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/kwmf/kowmfreadprivate.cc b/lib/kwmf/kowmfreadprivate.cc index a5a8ea18..f812b766 100644 --- a/lib/kwmf/kowmfreadprivate.cc +++ b/lib/kwmf/kowmfreadprivate.cc @@ -276,7 +276,7 @@ bool KoWmfReadPrivate::play( KoWmfRead* readWmf ) st >> size >> numFunction; /** - * mapping between n� function and index of table 'metaFuncTab' + * mapping between n° function and index of table 'metaFuncTab' * lower 8 digits of the function => entry in the table */ numFunction &= 0xFF; diff --git a/lib/kwmf/qwmf.h b/lib/kwmf/qwmf.h index cf05d617..2fe154dc 100644 --- a/lib/kwmf/qwmf.h +++ b/lib/kwmf/qwmf.h @@ -40,11 +40,11 @@ struct WmfPlaceableHeader; * QWinMetaFile is a WMF viewer based on QT toolkit * How to use QWinMetaFile : * <pre> - *�#include "tqwmf.h" + * #include "qwmf.h" * QWinMetaFile wmf; * TQPicture pic; // or TQImage pic; * if ( wmf.load( filename ) - *� �wmf.paint( &pic ); + * wmf.paint( &pic ); * </pre> */ |