Kaydet (Commit) bcc16920 authored tarafından Serge Krot's avatar Serge Krot Kaydeden (comit) Thorsten Behrens

tdf#101856 Fix crash in Insert Bookmark dialog

Change-Id: Idf892b9045429dc5826e995551b8e789c14600b8
Reviewed-on: https://gerrit.libreoffice.org/50616Reviewed-by: 's avatarThorsten Behrens <Thorsten.Behrens@CIB.de>
Tested-by: 's avatarThorsten Behrens <Thorsten.Behrens@CIB.de>
üst 3cbaff79
...@@ -233,6 +233,16 @@ String STR_BOOKMARK_TEXT ...@@ -233,6 +233,16 @@ String STR_BOOKMARK_TEXT
Text [ en-US ] = "Text"; Text [ en-US ] = "Text";
}; };
String STR_BOOKMARK_HIDDEN
{
Text [ en-US ] = "Hidden";
};
String STR_BOOKMARK_CONDITION
{
Text [ en-US ] = "Condition";
};
String SW_STR_NONE String SW_STR_NONE
{ {
Text [ en-US ] = "[None]" ; Text [ en-US ] = "[None]" ;
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<object class="GtkDialog" id="InsertBookmarkDialog"> <object class="GtkDialog" id="InsertBookmarkDialog">
<property name="can_focus">False</property> <property name="can_focus">False</property>
<property name="border_width">6</property> <property name="border_width">6</property>
<property name="title" translatable="yes">Bookmark</property> <property name="title" translatable="yes" context="insertbookmark|InsertBookmarkDialog">Bookmark</property>
<property name="type_hint">dialog</property> <property name="type_hint">dialog</property>
<child internal-child="vbox"> <child internal-child="vbox">
<object class="GtkBox" id="dialog-vbox1"> <object class="GtkBox" id="dialog-vbox1">
...@@ -54,8 +54,8 @@ ...@@ -54,8 +54,8 @@
</packing> </packing>
</child> </child>
<child> <child>
<object class="GtkCheckButton" id="hidden"> <object class="GtkCheckButton" id="hide">
<property name="label" translatable="yes" context="insertbookmark|hidden">Hidden</property> <property name="label" translatable="yes" context="insertbookmark|hide">H_ide</property>
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">True</property> <property name="can_focus">True</property>
<property name="receives_default">False</property> <property name="receives_default">False</property>
...@@ -72,12 +72,12 @@ ...@@ -72,12 +72,12 @@
<object class="GtkBox"> <object class="GtkBox">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">False</property> <property name="can_focus">False</property>
<property name="spacing">6</property> <property name="spacing">12</property>
<child> <child>
<object class="GtkLabel" id="label1"> <object class="GtkLabel" id="condlabel">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">False</property> <property name="can_focus">False</property>
<property name="label" translatable="yes" context="insertbookmark|label1">On condition</property> <property name="label" translatable="yes" context="insertbookmark|condlabel">_With condition</property>
</object> </object>
<packing> <packing>
<property name="expand">False</property> <property name="expand">False</property>
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
</packing> </packing>
</child> </child>
<child> <child>
<object class="GtkEntry" id="condition"> <object class="swlo-ConditionEdit" id="withcond">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">True</property> <property name="can_focus">True</property>
</object> </object>
...@@ -170,14 +170,12 @@ ...@@ -170,14 +170,12 @@
<packing> <packing>
<property name="expand">False</property> <property name="expand">False</property>
<property name="fill">False</property> <property name="fill">False</property>
<property name="position">5</property> <property name="position">4</property>
</packing> </packing>
</child> </child>
<child> <child internal-child="action_area" id="dialog-action_area1">
<object class="GtkBox" id="box6"> <object class="GtkButtonBox">
<property name="visible">True</property>
<property name="can_focus">False</property> <property name="can_focus">False</property>
<property name="spacing">6</property>
<child> <child>
<object class="GtkButton" id="help"> <object class="GtkButton" id="help">
<property name="label">gtk-help</property> <property name="label">gtk-help</property>
...@@ -188,7 +186,7 @@ ...@@ -188,7 +186,7 @@
</object> </object>
<packing> <packing>
<property name="expand">False</property> <property name="expand">False</property>
<property name="fill">False</property> <property name="fill">True</property>
<property name="position">0</property> <property name="position">0</property>
</packing> </packing>
</child> </child>
...@@ -202,28 +200,18 @@ ...@@ -202,28 +200,18 @@
</object> </object>
<packing> <packing>
<property name="expand">False</property> <property name="expand">False</property>
<property name="fill">False</property> <property name="fill">True</property>
<property name="pack_type">end</property> <property name="pack_type">end</property>
<property name="position">1</property> <property name="position">1</property>
</packing> </packing>
</child> </child>
</object> </object>
<packing> <packing>
<property name="expand">False</property> <property name="expand">True</property>
<property name="fill">False</property> <property name="fill">True</property>
<property name="position">5</property> <property name="position">5</property>
</packing> </packing>
</child> </child>
<child internal-child="action_area">
<object class="GtkButtonBox">
<property name="can_focus">False</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
<property name="position">6</property>
</packing>
</child>
</object> </object>
</child> </child>
</object> </object>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment