Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Jonathan Michalon
Open Virtual Carcassonne Clone
Commits
e526e001
Commit
e526e001
authored
Dec 30, 2013
by
Colomban Wendling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OVCCGtk: port OVCCGtkMessageInfo to GTK3
parent
2d47563e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
clients/ovcc-gtk/src/ovccgtk-message-info.c
clients/ovcc-gtk/src/ovccgtk-message-info.c
+2
-3
No files found.
clients/ovcc-gtk/src/ovccgtk-message-info.c
View file @
e526e001
...
...
@@ -83,7 +83,6 @@ ovccgtk_message_info_class_init (OVCCGtkMessageInfoClass *klass)
object_class
->
set_property
=
ovccgtk_message_info_set_propery
;
widget_class
->
show_all
=
gtk_widget_show
;
widget_class
->
hide_all
=
gtk_widget_hide
;
g_object_class_install_property
(
object_class
,
PROP_BUTTONS
,
g_param_spec_enum
(
"buttons"
,
...
...
@@ -140,8 +139,8 @@ ovccgtk_message_info_init (OVCCGtkMessageInfo *self)
self
->
priv
->
primary_label
=
ovccgtk_wrap_label_new
(
NULL
);
self
->
priv
->
secondary_label
=
ovccgtk_wrap_label_new
(
NULL
);
box
=
gtk_
h
box_new
(
FALSE
,
6
);
label_box
=
gtk_
v
box_new
(
FALSE
,
12
);
box
=
gtk_box_new
(
GTK_ORIENTATION_HORIZONTAL
,
6
);
label_box
=
gtk_box_new
(
GTK_ORIENTATION_VERTICAL
,
12
);
gtk_box_pack_start
(
GTK_BOX
(
box
),
self
->
priv
->
icon
,
FALSE
,
TRUE
,
0
);
gtk_box_pack_start
(
GTK_BOX
(
box
),
label_box
,
TRUE
,
TRUE
,
0
);
...
...
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