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
GNOME
gtk
Commits
5bf92100
Commit
5bf92100
authored
Nov 14, 2001
by
Tim Janik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
param spec fix
parent
43d46397
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
tests/prop-editor.c
tests/prop-editor.c
+3
-3
No files found.
tests/prop-editor.c
View file @
5bf92100
...
...
@@ -695,7 +695,7 @@ properties_from_type (GObject *object,
continue
;
}
label
=
gtk_label_new
(
g_param_get_nick
(
spec
));
label
=
gtk_label_new
(
g_param_
spec_
get_nick
(
spec
));
gtk_misc_set_alignment
(
GTK_MISC
(
label
),
0
.
0
,
0
.
5
);
gtk_table_attach_defaults
(
GTK_TABLE
(
table
),
label
,
0
,
1
,
i
,
i
+
1
);
...
...
@@ -707,8 +707,8 @@ properties_from_type (GObject *object,
if
(
!
can_modify
)
gtk_widget_set_sensitive
(
prop_edit
,
FALSE
);
if
(
g_param_get_blurb
(
spec
))
gtk_tooltips_set_tip
(
tips
,
prop_edit
,
g_param_get_blurb
(
spec
),
NULL
);
if
(
g_param_
spec_
get_blurb
(
spec
))
gtk_tooltips_set_tip
(
tips
,
prop_edit
,
g_param_
spec_
get_blurb
(
spec
),
NULL
);
/* set initial value */
g_object_notify
(
object
,
spec
->
name
);
...
...
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