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

View File

@@ -26,7 +26,7 @@
#include <string>
struct LightSong;
struct sticker;
struct Sticker;
class Database;
class Error;
@@ -67,7 +67,7 @@ sticker_song_delete_value(const LightSong &song, const char *name,
* @param song the song object
* @return a sticker object, or NULL on error or if there is no sticker
*/
sticker *
Sticker *
sticker_song_get(const LightSong &song, Error &error);
/**