summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2023-12-14 13:35:24 +0100
committerJulien Nabet <serval2412@yahoo.fr>2023-12-14 22:58:52 +0100
commitfdc87dd56548622e13353b4cf9864232ee0110fb (patch)
treef30be436e9026c5820982900467d1acdc990192c /toolkit
parentf3af1998741aeb7897aa5306ff16e7788bda2aa0 (diff)
tdf#151456: AnimatedImages in Basic Dialog : StepTime is ignored
2 problems here 1) Regression on test of "pThrobber" since 51e97b2ffd8f0ae0591d1880d621cba4596583b7 toolkit: first cut at switching to VclPtr. 2) as the author of the bug "Jurassik Pork" indicated, "mnStepTime" wasn't used after having been used in ctr of Throbber Thank you to him for the suggestion! Change-Id: I0d1a53738035c3e822ea84d5972363dd9d0b5d8d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160771 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/awt/animatedimagespeer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/animatedimagespeer.cxx b/toolkit/source/awt/animatedimagespeer.cxx
index ac2dca5603be..379a82388ba2 100644
--- a/toolkit/source/awt/animatedimagespeer.cxx
+++ b/toolkit/source/awt/animatedimagespeer.cxx
@@ -182,7 +182,7 @@ namespace toolkit
SolarMutexGuard aGuard;
VclPtr<Throbber> pThrobber = GetAsDynamic<Throbber>();
- if ( pThrobber )
+ if ( !pThrobber )
{
VCLXWindow::setProperty( i_propertyName, i_value );
return;