diff options
author | Alessandro Portale <alessandro.portale@nokia.com> | 2009-09-08 15:58:17 (GMT) |
---|---|---|
committer | Alessandro Portale <alessandro.portale@nokia.com> | 2009-09-09 14:33:46 (GMT) |
commit | 6715f2f29ae413b328243d8c3dbe15cfba51d33f (patch) | |
tree | bb6a99cad38b86e91658969fec1b3bf044e8f1f7 /src/gui/text | |
parent | 417e05fe128f0fd1bf5d309e3667b057a094bda3 (diff) | |
download | Qt-6715f2f29ae413b328243d8c3dbe15cfba51d33f.zip Qt-6715f2f29ae413b328243d8c3dbe15cfba51d33f.tar.gz Qt-6715f2f29ae413b328243d8c3dbe15cfba51d33f.tar.bz2 |
Removed some superfluous semicolons
Reviewed-by: TrustMe
Diffstat (limited to 'src/gui/text')
-rw-r--r-- | src/gui/text/qfontdatabase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/text/qfontdatabase.cpp b/src/gui/text/qfontdatabase.cpp index f450d94..0aed71a 100644 --- a/src/gui/text/qfontdatabase.cpp +++ b/src/gui/text/qfontdatabase.cpp @@ -334,7 +334,7 @@ QtFontStyle *QtFontFoundry::style(const QtFontStyle::Key &key, bool create) else high = pos; pos = (high + low) / 2; - }; + } pos = low; } if (!create) @@ -693,7 +693,7 @@ QtFontFamily *QFontDatabasePrivate::family(const QString &f, bool create) else low = pos; pos = (high + low) / 2; - }; + } if (!res) return families[pos]; } |