diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2018-12-12 15:24:47 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2018-12-12 16:20:47 +0100 |
commit | 2b6bd096f5bd9d250e4590d7150190086ad282b2 (patch) | |
tree | ceef4d8404170bffceecf5cfa9ab1ff4db251dd2 /svtools | |
parent | 22be500b1624753decec43c0de4ccb1c5f7a21d4 (diff) |
tdf#104277 follow-up: use svtools::executeRestartDialog
This harmonizes this setting's prompt with other places asking for restart.
Related obsolete strings are removed.
Change-Id: I2da63585747056714eb688681194acd35550e1c7
Reviewed-on: https://gerrit.libreoffice.org/65022
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/dialogs/restartdialog.cxx | 3 | ||||
-rw-r--r-- | svtools/uiconfig/ui/restartdialog.ui | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/svtools/source/dialogs/restartdialog.cxx b/svtools/source/dialogs/restartdialog.cxx index 1de2e09cc014..460267c2dde3 100644 --- a/svtools/source/dialogs/restartdialog.cxx +++ b/svtools/source/dialogs/restartdialog.cxx @@ -62,6 +62,9 @@ public: case svtools::RESTART_REASON_OPENGL: reason_ = m_xBuilder->weld_widget("reason_opengl"); break; + case svtools::RESTART_REASON_OPENCL: + reason_ = m_xBuilder->weld_widget("reason_opencl"); + break; default: assert(false); // this cannot happen } diff --git a/svtools/uiconfig/ui/restartdialog.ui b/svtools/uiconfig/ui/restartdialog.ui index f9c4ebc95b28..ab8dfa14f69e 100644 --- a/svtools/uiconfig/ui/restartdialog.ui +++ b/svtools/uiconfig/ui/restartdialog.ui @@ -229,6 +229,21 @@ </packing> </child> <child> + <object class="GtkLabel" id="reason_opencl"> + <property name="can_focus">False</property> + <property name="no_show_all">True</property> + <property name="label" translatable="yes" context="restartdialog|reason_opencl">For the OpenCL changes to take effect, %PRODUCTNAME must be restarted.</property> + <property name="wrap">True</property> + <property name="max_width_chars">50</property> + <property name="xalign">0</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">11</property> + </packing> + </child> + <child> <object class="GtkLabel" id="label"> <property name="visible">True</property> <property name="can_focus">False</property> @@ -239,7 +254,7 @@ <packing> <property name="expand">False</property> <property name="fill">True</property> - <property name="position">11</property> + <property name="position">12</property> </packing> </child> </object> |