themingengine: Make _gtk_theming_engine_paint_spinner() args const
This commit is contained in:
parent
b9ebe8c226
commit
c5878e8f6f
@ -2690,10 +2690,10 @@ gtk_theming_engine_render_handle (GtkThemingEngine *engine,
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
_gtk_theming_engine_paint_spinner (cairo_t *cr,
|
_gtk_theming_engine_paint_spinner (cairo_t *cr,
|
||||||
gdouble radius,
|
gdouble radius,
|
||||||
gdouble progress,
|
gdouble progress,
|
||||||
GdkRGBA *color)
|
const GdkRGBA *color)
|
||||||
{
|
{
|
||||||
guint num_steps, step;
|
guint num_steps, step;
|
||||||
gdouble half;
|
gdouble half;
|
||||||
|
@ -22,10 +22,10 @@
|
|||||||
#include "gtk/gtkthemingengine.h"
|
#include "gtk/gtkthemingengine.h"
|
||||||
#include "gtk/gtkcssvalueprivate.h"
|
#include "gtk/gtkcssvalueprivate.h"
|
||||||
|
|
||||||
void _gtk_theming_engine_paint_spinner (cairo_t *cr,
|
void _gtk_theming_engine_paint_spinner (cairo_t *cr,
|
||||||
gdouble radius,
|
gdouble radius,
|
||||||
gdouble progress,
|
gdouble progress,
|
||||||
GdkRGBA *color);
|
const GdkRGBA *color);
|
||||||
|
|
||||||
GtkCssValue *_gtk_theming_engine_peek_property (GtkThemingEngine *engine,
|
GtkCssValue *_gtk_theming_engine_peek_property (GtkThemingEngine *engine,
|
||||||
guint property_id);
|
guint property_id);
|
||||||
|
Loading…
Reference in New Issue
Block a user