aboutsummaryrefslogtreecommitdiffstats
path: root/src/sticker/StickerPrint.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/sticker/StickerPrint.hxx')
-rw-r--r--src/sticker/StickerPrint.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sticker/StickerPrint.hxx b/src/sticker/StickerPrint.hxx
index 39f3dc09e..e431245e4 100644
--- a/src/sticker/StickerPrint.hxx
+++ b/src/sticker/StickerPrint.hxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2014 The Music Player Daemon Project
+ * Copyright (C) 2003-2015 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -20,19 +20,19 @@
#ifndef MPD_STICKER_PRINT_HXX
#define MPD_STICKER_PRINT_HXX
-struct sticker;
-class Client;
+struct Sticker;
+class Response;
/**
* Sends one sticker value to the client.
*/
void
-sticker_print_value(Client &client, const char *name, const char *value);
+sticker_print_value(Response &r, const char *name, const char *value);
/**
* Sends all sticker values to the client.
*/
void
-sticker_print(Client &client, const sticker &sticker);
+sticker_print(Response &r, const Sticker &sticker);
#endif