vcl/unx/gtk3/fpicker/SalGtkFilePicker.cxx |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit 635a335de2eb8a532d7427fcc52ab23cdc20bea4
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Tue Dec 13 08:45:57 2022 +0000
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Tue Dec 13 10:31:36 2022 +0000

    Related: tdf#150007 add destructive-action to file overwrite message dialog
    
    Change-Id: Ic522555a2d9d100a13f1d1dc35cfd6a57675447e
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144023
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caol...@redhat.com>

diff --git a/vcl/unx/gtk3/fpicker/SalGtkFilePicker.cxx 
b/vcl/unx/gtk3/fpicker/SalGtkFilePicker.cxx
index 7a74cdaf937a..4068d57f2fa1 100644
--- a/vcl/unx/gtk3/fpicker/SalGtkFilePicker.cxx
+++ b/vcl/unx/gtk3/fpicker/SalGtkFilePicker.cxx
@@ -1007,6 +1007,10 @@ sal_Int16 SAL_CALL SalGtkFilePicker::execute()
                                 aMsg.getStr()
                             );
 
+                            GtkWidget* pOkButton = 
gtk_dialog_get_widget_for_response(GTK_DIALOG(dlg), GTK_RESPONSE_YES);
+                            GtkStyleContext* pStyleContext = 
gtk_widget_get_style_context(pOkButton);
+                            gtk_style_context_add_class(pStyleContext, 
"destructive-action");
+
                             sal_Int32 nSegmentCount = 
aFileObj.getSegmentCount();
                             if (nSegmentCount >= 2)
                             {

Reply via email to