We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3083459 commit 52549d2Copy full SHA for 52549d2
src/Gtk/GtkToolItem.cpp
@@ -70,10 +70,10 @@ void GtkToolItem_::set_tooltip_markup(Php::Parameters ¶meters)
70
error_msg += " given";
71
throw Php::Exception(error_msg);
72
}
73
- std::string s_text = parameters[0];
74
- gchar *text = (gchar *)s_text.c_str();
+ std::string s_markup = parameters[0];
+ gchar *markup = (gchar *)s_markup.c_str();
75
76
- gtk_tool_item_set_tooltip_markup (GTK_TOOL_ITEM(instance), text);
+ gtk_tool_item_set_tooltip_markup (GTK_TOOL_ITEM(instance), markup);
77
78
79
0 commit comments