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-15 09:20:15 +0100
commit2324cafba1d41374885cbc2e52b7449de3d924bf (patch)
tree33fd5b8b56494db0cb07ac429f64849e05ad75c0 /toolkit
parent398557aa835e43d0df1058c14802fdeae70b261a (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> (cherry picked from commit d2367a971f624cd1d566410fbea40809713fdf53) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160798
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;