Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
gtk
Commits
cf79ce51
Commit
cf79ce51
authored
Aug 16, 2001
by
Matthias Clasen
Browse files
tests/testgtk.c (create_handle_box):
(create_toolbar): Replace gtk_window_set_policy calls by gtk_window_set_resizable.
parent
c723bc6d
Changes
8
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
cf79ce51
2001-08-16 Matthias Clasen <matthiasc@waldgeist.poet.de>
* tests/testgtk.c (create_handle_box):
(create_toolbar): Replace gtk_window_set_policy calls by
gtk_window_set_resizable.
2001-08-16 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_info.png: new style bulb
...
...
ChangeLog.pre-2-0
View file @
cf79ce51
2001-08-16 Matthias Clasen <matthiasc@waldgeist.poet.de>
* tests/testgtk.c (create_handle_box):
(create_toolbar): Replace gtk_window_set_policy calls by
gtk_window_set_resizable.
2001-08-16 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_info.png: new style bulb
...
...
ChangeLog.pre-2-10
View file @
cf79ce51
2001-08-16 Matthias Clasen <matthiasc@waldgeist.poet.de>
* tests/testgtk.c (create_handle_box):
(create_toolbar): Replace gtk_window_set_policy calls by
gtk_window_set_resizable.
2001-08-16 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_info.png: new style bulb
...
...
ChangeLog.pre-2-2
View file @
cf79ce51
2001-08-16 Matthias Clasen <matthiasc@waldgeist.poet.de>
* tests/testgtk.c (create_handle_box):
(create_toolbar): Replace gtk_window_set_policy calls by
gtk_window_set_resizable.
2001-08-16 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_info.png: new style bulb
...
...
ChangeLog.pre-2-4
View file @
cf79ce51
2001-08-16 Matthias Clasen <matthiasc@waldgeist.poet.de>
* tests/testgtk.c (create_handle_box):
(create_toolbar): Replace gtk_window_set_policy calls by
gtk_window_set_resizable.
2001-08-16 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_info.png: new style bulb
...
...
ChangeLog.pre-2-6
View file @
cf79ce51
2001-08-16 Matthias Clasen <matthiasc@waldgeist.poet.de>
* tests/testgtk.c (create_handle_box):
(create_toolbar): Replace gtk_window_set_policy calls by
gtk_window_set_resizable.
2001-08-16 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_info.png: new style bulb
...
...
ChangeLog.pre-2-8
View file @
cf79ce51
2001-08-16 Matthias Clasen <matthiasc@waldgeist.poet.de>
* tests/testgtk.c (create_handle_box):
(create_toolbar): Replace gtk_window_set_policy calls by
gtk_window_set_resizable.
2001-08-16 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_info.png: new style bulb
...
...
tests/testgtk.c
View file @
cf79ce51
...
...
@@ -713,7 +713,7 @@ create_toolbar (void)
{
window
=
gtk_window_new
(
GTK_WINDOW_TOPLEVEL
);
gtk_window_set_title
(
GTK_WINDOW
(
window
),
"Toolbar test"
);
gtk_window_set_
policy
(
GTK_WINDOW
(
window
),
FALSE
,
TRUE
,
TRUE
);
gtk_window_set_
resizable
(
GTK_WINDOW
(
window
),
FALSE
);
gtk_signal_connect
(
GTK_OBJECT
(
window
),
"destroy"
,
GTK_SIGNAL_FUNC
(
gtk_widget_destroyed
),
...
...
@@ -1553,10 +1553,7 @@ create_handle_box (void)
window
=
gtk_window_new
(
GTK_WINDOW_TOPLEVEL
);
gtk_window_set_title
(
GTK_WINDOW
(
window
),
"Handle Box Test"
);
gtk_window_set_policy
(
GTK_WINDOW
(
window
),
TRUE
,
TRUE
,
TRUE
);
gtk_window_set_resizable
(
GTK_WINDOW
(
window
),
FALSE
);
gtk_signal_connect
(
GTK_OBJECT
(
window
),
"destroy"
,
GTK_SIGNAL_FUNC
(
gtk_widget_destroyed
),
...
...
Write
Preview
Supports
Markdown
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