Skip to content

Commit

Permalink
Convert two methods to static as they don't touch instance data.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-kristjansson committed Jan 30, 2012
1 parent df7cdd1 commit 09ef3c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythplugins/mythmusic/mythmusic/bumpscope.h
Expand Up @@ -32,8 +32,8 @@ class BumpScope : public VisualBase
inline void draw_vert_line(unsigned char *buffer, int x, int y1, int y2);
void render_light(int lx, int ly);

void rgb_to_hsv(unsigned int color, double *h, double *s, double *v);
void hsv_to_rgb(double h, double s, double v, unsigned int *color);
static void rgb_to_hsv(unsigned int color, double *h, double *s, double *v);
static void hsv_to_rgb(double h, double s, double v, unsigned int *color);

QImage *m_image;

Expand Down

0 comments on commit 09ef3c9

Please sign in to comment.