diff options
| author | Masahiro Yamada <masahiroy@kernel.org> | 2025-07-17 08:24:10 +0900 |
|---|---|---|
| committer | Masahiro Yamada <masahiroy@kernel.org> | 2025-07-26 19:55:37 +0900 |
| commit | 2bc0148f78193865065035fe19095c78c3d8129f (patch) | |
| tree | 72a81e717caa5c1c9cf00b0745a346724f2e0c79 /scripts | |
| parent | 15a5ae3b0976d1190728044920cf6337a218ae62 (diff) | |
| download | linux-2bc0148f78193865065035fe19095c78c3d8129f.tar.gz | |
kconfig: gconf: replace GtkImageMenuItem with GtkMenuItem
GtkImageMenuItem is deprecated with GTK 3.10. [1]
Use GtkMenuItem instead.
[1]: https://gitlab.gnome.org/GNOME/gtk/-/blob/3.10.0/gtk/deprecated/gtkimagemenuitem.c#L797
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/kconfig/gconf.ui | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/kconfig/gconf.ui b/scripts/kconfig/gconf.ui index c37807e8b782c1..ab4431255fa76c 100644 --- a/scripts/kconfig/gconf.ui +++ b/scripts/kconfig/gconf.ui @@ -39,7 +39,7 @@ <object class="GtkMenu" id="file1_menu"> <child> - <object class="GtkImageMenuItem" id="load1"> + <object class="GtkMenuItem" id="load1"> <property name="visible">True</property> <property name="tooltip-text" translatable="yes">Load a config file</property> <property name="label" translatable="yes">_Load</property> @@ -49,7 +49,7 @@ </child> <child> - <object class="GtkImageMenuItem" id="save1"> + <object class="GtkMenuItem" id="save1"> <property name="visible">True</property> <property name="tooltip-text" translatable="yes">Save the config in .config</property> <property name="label" translatable="yes">_Save</property> @@ -59,7 +59,7 @@ </child> <child> - <object class="GtkImageMenuItem" id="save_as1"> + <object class="GtkMenuItem" id="save_as1"> <property name="visible">True</property> <property name="tooltip-text" translatable="yes">Save the config in a file</property> <property name="label" translatable="yes">Save _as</property> @@ -74,7 +74,7 @@ </child> <child> - <object class="GtkImageMenuItem" id="quit1"> + <object class="GtkMenuItem" id="quit1"> <property name="visible">True</property> <property name="label" translatable="yes">_Quit</property> <property name="use_underline">True</property> @@ -178,7 +178,7 @@ <object class="GtkMenu" id="help1_menu"> <child> - <object class="GtkImageMenuItem" id="introduction1"> + <object class="GtkMenuItem" id="introduction1"> <property name="visible">True</property> <property name="label" translatable="yes">_Introduction</property> <property name="use_underline">True</property> @@ -187,7 +187,7 @@ </child> <child> - <object class="GtkImageMenuItem" id="about1"> + <object class="GtkMenuItem" id="about1"> <property name="visible">True</property> <property name="label" translatable="yes">_About</property> <property name="use_underline">True</property> @@ -196,7 +196,7 @@ </child> <child> - <object class="GtkImageMenuItem" id="license1"> + <object class="GtkMenuItem" id="license1"> <property name="visible">True</property> <property name="label" translatable="yes">_License</property> <property name="use_underline">True</property> |
