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
2ffa7540
Commit
2ffa7540
authored
Aug 28, 2001
by
Matthias Clasen
Browse files
gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
of use_text_format to the end of the function. (#56447)
parent
a0c65ec2
Changes
8
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
2ffa7540
Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
of use_text_format to the end of the function. (#56447)
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
...
...
ChangeLog.pre-2-0
View file @
2ffa7540
Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
of use_text_format to the end of the function. (#56447)
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
...
...
ChangeLog.pre-2-10
View file @
2ffa7540
Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
of use_text_format to the end of the function. (#56447)
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
...
...
ChangeLog.pre-2-2
View file @
2ffa7540
Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
of use_text_format to the end of the function. (#56447)
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
...
...
ChangeLog.pre-2-4
View file @
2ffa7540
Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
of use_text_format to the end of the function. (#56447)
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
...
...
ChangeLog.pre-2-6
View file @
2ffa7540
Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
of use_text_format to the end of the function. (#56447)
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
...
...
ChangeLog.pre-2-8
View file @
2ffa7540
Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
of use_text_format to the end of the function. (#56447)
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
...
...
gtk/gtkprogressbar.c
View file @
2ffa7540
...
...
@@ -907,9 +907,6 @@ gtk_progress_bar_set_text (GtkProgressBar *pbar,
{
g_return_if_fail
(
GTK_IS_PROGRESS_BAR
(
pbar
));
/* We don't support formats in this interface */
GTK_PROGRESS
(
pbar
)
->
use_text_format
=
FALSE
;
if
(
text
&&
*
text
)
{
gtk_progress_set_show_text
(
GTK_PROGRESS
(
pbar
),
TRUE
);
...
...
@@ -921,6 +918,9 @@ gtk_progress_bar_set_text (GtkProgressBar *pbar,
gtk_progress_set_format_string
(
GTK_PROGRESS
(
pbar
),
""
);
}
/* We don't support formats in this interface */
GTK_PROGRESS
(
pbar
)
->
use_text_format
=
FALSE
;
g_object_notify
(
G_OBJECT
(
pbar
),
"text"
);
}
...
...
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