diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-08-13 13:01:30 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-08-13 14:51:16 +0100 |
commit | a052d850a6536317bf2983a1892738f53f4862bf (patch) | |
tree | c0af4e4113efc82f56d5bd01a881d5154cf854ee /sd | |
parent | c6508f02aabd5d4c5b3ff3980b8e464a5723e915 (diff) |
add support for gtk-media-play symbol
Change-Id: I6d615112fd80999597eac9470eca10b6bc1d16d4
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/animations/CustomAnimationDialog.cxx | 1 | ||||
-rw-r--r-- | sd/uiconfig/simpress/ui/customanimationeffecttab.ui | 8 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sd/source/ui/animations/CustomAnimationDialog.cxx b/sd/source/ui/animations/CustomAnimationDialog.cxx index 667a0ca19f70..058a0720b7f3 100644 --- a/sd/source/ui/animations/CustomAnimationDialog.cxx +++ b/sd/source/ui/animations/CustomAnimationDialog.cxx @@ -1179,7 +1179,6 @@ CustomAnimationEffectTabPage::CustomAnimationEffectTabPage( Window* pParent, con mpLBSound->SetSelectHdl( LINK( this, CustomAnimationEffectTabPage, implSelectHdl ) ); mpPBSoundPreview->SetClickHdl( LINK( this, CustomAnimationEffectTabPage, implSelectHdl ) ); - mpPBSoundPreview->SetSymbol( SYMBOL_PLAY ); // fill the color box SfxObjectShell* pDocSh = SfxObjectShell::Current(); diff --git a/sd/uiconfig/simpress/ui/customanimationeffecttab.ui b/sd/uiconfig/simpress/ui/customanimationeffecttab.ui index 38763e0dd9e9..f55b2d7e07c2 100644 --- a/sd/uiconfig/simpress/ui/customanimationeffecttab.ui +++ b/sd/uiconfig/simpress/ui/customanimationeffecttab.ui @@ -2,6 +2,11 @@ <interface> <!-- interface-requires gtk+ 3.0 --> <!-- interface-requires LibreOffice 1.0 --> + <object class="GtkImage" id="image1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="stock">gtk-media-play</property> + </object> <object class="GtkBox" id="EffectTab"> <property name="visible">True</property> <property name="can_focus">False</property> @@ -239,11 +244,10 @@ </child> <child> <object class="GtkButton" id="sound_preview"> - <property name="label">gtk-media-play</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">True</property> - <property name="use_stock">True</property> + <property name="image">image1</property> </object> <packing> <property name="expand">False</property> |