Qt: bugfix in TQtWidgetSet.drawText()

git-svn-id: trunk@16598 -
This commit is contained in:
zeljko 2008-09-15 17:01:19 +00:00
parent dbf5d01d9b
commit b15a1073c9

View File

@ -1210,10 +1210,10 @@ begin
if Flags and DT_SINGLELINE <> 0 then
F := F or QtTextSingleLine;
if Flags and DT_NOPREFIX = 0 then
if Flags and DT_NOPREFIX <> 0 then
F := F or QtTextShowMnemonic;
if Flags and DT_NOCLIP = 0 then
if Flags and DT_NOCLIP <> 0 then
F := F or QtTextDontClip;
if Flags and DT_EXPANDTABS <> 0 then