Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Nikita Churaev
gtk
Commits
a22bcd66
Commit
a22bcd66
authored
Mar 26, 2006
by
Matthias Clasen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a leak
parent
25a56013
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
ChangeLog
ChangeLog
+3
-0
ChangeLog.pre-2-10
ChangeLog.pre-2-10
+3
-0
gtk/gtkuimanager.c
gtk/gtkuimanager.c
+1
-1
No files found.
ChangeLog
View file @
a22bcd66
2006-03-26 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkuimanager.c (gtk_ui_manager_get_property): Fix
a leak.
* gtk/gtktexttag.c (gtk_text_tag_get_property):
* gtk/gtkcellrenderertext.c (gtk_cell_render_text_get_property):
Avoid an unnecessary strdup. (#336013)
...
...
ChangeLog.pre-2-10
View file @
a22bcd66
2006-03-26 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkuimanager.c (gtk_ui_manager_get_property): Fix
a leak.
* gtk/gtktexttag.c (gtk_text_tag_get_property):
* gtk/gtkcellrenderertext.c (gtk_cell_render_text_get_property):
Avoid an unnecessary strdup. (#336013)
...
...
gtk/gtkuimanager.c
View file @
a22bcd66
...
...
@@ -464,7 +464,7 @@ gtk_ui_manager_get_property (GObject *object,
g_value_set_boolean
(
value
,
self
->
private_data
->
add_tearoffs
);
break
;
case
PROP_UI
:
g_value_
set
_string
(
value
,
gtk_ui_manager_get_ui
(
self
));
g_value_
take
_string
(
value
,
gtk_ui_manager_get_ui
(
self
));
break
;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID
(
object
,
prop_id
,
pspec
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment