summaryrefslogtreecommitdiff
path: root/src/totem-playlist.c
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2014-05-30 19:49:11 +0200
committerBastien Nocera <hadess@hadess.net>2014-05-30 19:49:11 +0200
commitd0bf95742351ed8ee56eb4c037ffc2101636fc8c (patch)
tree44cd65b8a1f9fcc160d7802d6ae5e10f3408e9a6 /src/totem-playlist.c
parent40d4b61b75f0ccd8f1e3577f43d6849a187e8f6c (diff)
downloadtotem-d0bf95742351ed8ee56eb4c037ffc2101636fc8c.tar.gz
main: Remove RTL helpers
The code now lives directly in GTK+'s GtkIconTheme handling.
Diffstat (limited to 'src/totem-playlist.c')
-rw-r--r--src/totem-playlist.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/totem-playlist.c b/src/totem-playlist.c
index 7297b78c0..10af54b4a 100644
--- a/src/totem-playlist.c
+++ b/src/totem-playlist.c
@@ -33,7 +33,6 @@
#include "totem-uri.h"
#include "totem-interface.h"
-#include "totem-rtl-helpers.h"
#define PL_LEN (gtk_tree_model_iter_n_children (playlist->priv->model, NULL))
@@ -561,7 +560,7 @@ set_playing_icon (GtkTreeViewColumn *column, GtkCellRenderer *renderer,
switch (playing) {
case TOTEM_PLAYLIST_STATUS_PLAYING:
- icon_name = totem_get_rtl_icon_name ("media-playback-start");
+ icon_name = "media-playback-start";
break;
case TOTEM_PLAYLIST_STATUS_PAUSED:
icon_name = "media-playback-pause-symbolic";