# | Line 171 | Line 171 | public: | |
---|---|---|
171 | }; | |
172 | ||
173 | template <> | |
174 | + | inline void Audacious::Playlist(const std::string &item, bool enqueue) |
175 | + | { |
176 | + | char *list[] = { const_cast<char *>(item.c_str()) }; |
177 | + | |
178 | + | Playlist(list, 1, enqueue); |
179 | + | } |
180 | + | |
181 | + | template <> |
182 | inline void Audacious::PlaylistAdd(const std::string &item) | |
183 | { | |
184 | ::GList list = { const_cast<char *>(item.c_str()), NULL, NULL }; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |