summaryrefslogtreecommitdiff
path: root/src/plugins/lms/rygel-lms-artists.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/lms/rygel-lms-artists.vala')
-rw-r--r--src/plugins/lms/rygel-lms-artists.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/lms/rygel-lms-artists.vala b/src/plugins/lms/rygel-lms-artists.vala
index 1049fba9..be715958 100644
--- a/src/plugins/lms/rygel-lms-artists.vala
+++ b/src/plugins/lms/rygel-lms-artists.vala
@@ -24,16 +24,16 @@ using Rygel;
using Sqlite;
public class Rygel.LMS.Artists : Rygel.LMS.CategoryContainer {
- private static const string SQL_ALL =
+ private const string SQL_ALL =
"SELECT audio_artists.id, audio_artists.name " +
"FROM audio_artists " +
"LIMIT ? OFFSET ?;";
- private static const string SQL_COUNT =
+ private const string SQL_COUNT =
"SELECT COUNT(audio_artists.id) " +
"FROM audio_artists;";
- private static const string SQL_FIND_OBJECT =
+ private const string SQL_FIND_OBJECT =
"SELECT audio_artists.id, audio_artists.name " +
"FROM audio_artists " +
"WHERE audio_artists.id = ?;";