diff options
author | Benjamin Otte <otte@redhat.com> | 2016-12-19 19:45:34 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-12-20 18:01:12 +0100 |
commit | 0dbdf0c42858c0a2245ad755b164c5bede55f953 (patch) | |
tree | 6e31f6d940681b2c16f978d45ac64b1bcf0ce9e6 /gtk/gtkprogressbar.c | |
parent | 613194a2461558abbc08d4f4fdecbcef836450eb (diff) | |
download | gtk+-0dbdf0c42858c0a2245ad755b164c5bede55f953.tar.gz |
gadget: Remove gtk_css_gadget_draw()
And with it, remove the draw func from custom gadgets, that has been
NULL everywhere.
All gadgets are snapshot now.
Diffstat (limited to 'gtk/gtkprogressbar.c')
-rw-r--r-- | gtk/gtkprogressbar.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gtk/gtkprogressbar.c b/gtk/gtkprogressbar.c index 2f9ba70765..ac4fc00187 100644 --- a/gtk/gtkprogressbar.c +++ b/gtk/gtkprogressbar.c @@ -470,7 +470,6 @@ gtk_progress_bar_init (GtkProgressBar *pbar) GTK_WIDGET (pbar), gtk_progress_bar_measure, gtk_progress_bar_allocate, - NULL, gtk_progress_bar_render, NULL, NULL); @@ -481,7 +480,6 @@ gtk_progress_bar_init (GtkProgressBar *pbar) NULL, NULL, gtk_progress_bar_allocate_trough, - NULL, gtk_progress_bar_render_trough, NULL, NULL); @@ -494,7 +492,6 @@ gtk_progress_bar_init (GtkProgressBar *pbar) NULL, NULL, NULL, - NULL, NULL); update_node_state (pbar); @@ -1354,7 +1351,6 @@ gtk_progress_bar_set_show_text (GtkProgressBar *pbar, priv->trough_gadget, gtk_progress_bar_measure_text, NULL, - NULL, gtk_progress_bar_render_text, NULL, NULL); |