mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-14 23:56:36 +00:00
* use PNBLACKLIST instead This reverts commit a9733d04fad02e466919b730ad7e158cbb71042c. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
20 lines
737 B
Diff
20 lines
737 B
Diff
Imported from Debian 0.1.8-3
|
|
|
|
Upstream-Status: Pending
|
|
|
|
diff --git a/src/gtk/MainView.cxx b/src/gtk/MainView.cxx
|
|
index b983bff..f87de28 100644
|
|
--- a/src/gtk/MainView.cxx
|
|
+++ b/src/gtk/MainView.cxx
|
|
@@ -634,8 +634,9 @@ MainView::showErrorMessage (const gchar *title, const gchar *body)
|
|
GTK_DIALOG_DESTROY_WITH_PARENT,
|
|
GTK_MESSAGE_ERROR,
|
|
GTK_BUTTONS_OK,
|
|
+ "%s",
|
|
title);
|
|
- gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG(errorDialog),
|
|
+ gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG(errorDialog), "%s",
|
|
body);
|
|
gtk_dialog_run (GTK_DIALOG (errorDialog));
|
|
gtk_widget_destroy (errorDialog);
|