diff options
Diffstat (limited to 'meta-efl/recipes-efl/efl/epdfview/fix-format.patch')
| -rw-r--r-- | meta-efl/recipes-efl/efl/epdfview/fix-format.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-efl/recipes-efl/efl/epdfview/fix-format.patch b/meta-efl/recipes-efl/efl/epdfview/fix-format.patch new file mode 100644 index 0000000000..8ad5b97ca9 --- /dev/null +++ b/meta-efl/recipes-efl/efl/epdfview/fix-format.patch | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | Imported from Debian 0.1.8-3 | ||
| 2 | |||
| 3 | Upstream-Status: Pending | ||
| 4 | |||
| 5 | diff --git a/src/gtk/MainView.cxx b/src/gtk/MainView.cxx | ||
| 6 | index b983bff..f87de28 100644 | ||
| 7 | --- a/src/gtk/MainView.cxx | ||
| 8 | +++ b/src/gtk/MainView.cxx | ||
| 9 | @@ -634,8 +634,9 @@ MainView::showErrorMessage (const gchar *title, const gchar *body) | ||
| 10 | GTK_DIALOG_DESTROY_WITH_PARENT, | ||
| 11 | GTK_MESSAGE_ERROR, | ||
| 12 | GTK_BUTTONS_OK, | ||
| 13 | + "%s", | ||
| 14 | title); | ||
| 15 | - gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG(errorDialog), | ||
| 16 | + gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG(errorDialog), "%s", | ||
| 17 | body); | ||
| 18 | gtk_dialog_run (GTK_DIALOG (errorDialog)); | ||
| 19 | gtk_widget_destroy (errorDialog); | ||
