From 0dcfe25d4f177dde73250965c5d7370a4aa66886 Mon Sep 17 00:00:00 2001 From: martin Date: Sun, 8 Sep 2013 23:27:01 +0000 Subject: [PATCH] Tests: test for PageControl, workaround missing button paint in QT git-svn-id: trunk@42690 - --- test/lcltests/testpagecontrol.pas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/lcltests/testpagecontrol.pas b/test/lcltests/testpagecontrol.pas index 475a8f8ccb..e264b09e30 100644 --- a/test/lcltests/testpagecontrol.pas +++ b/test/lcltests/testpagecontrol.pas @@ -153,7 +153,9 @@ begin try Result := WMPaintCalled; if (TestLabel <> nil) and (Result <> TestLabel.DidPaint) then exit(-1); + {$IfNDef LCLQT} if (TestButton <> nil) and (Result <> TestButton.DidPaint) then exit(-1); + {$EndIf} finally ResetCounts; end;