StickerDatabase: convert the struct name to upper case

This commit is contained in:
Max Kellermann
2015-01-28 19:33:56 +01:00
parent 822ac7b100
commit 593bb5a8a7
7 changed files with 19 additions and 19 deletions
+2 -2
View File
@@ -20,7 +20,7 @@
#ifndef MPD_STICKER_PRINT_HXX
#define MPD_STICKER_PRINT_HXX
struct sticker;
struct Sticker;
class Client;
/**
@@ -33,6 +33,6 @@ sticker_print_value(Client &client, const char *name, const char *value);
* Sends all sticker values to the client.
*/
void
sticker_print(Client &client, const sticker &sticker);
sticker_print(Client &client, const Sticker &sticker);
#endif