Bring previous and next icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent 13b0b3ec81
commit 091b4d267d

@ -78,12 +78,12 @@ SQ_SlideShowWidget::SQ_SlideShowWidget(TQWidget *parent, const char *name)
int is = TDEIcon::SizeMedium;
TQToolButton *b = new TQToolButton(options);
b->setIconSet(SQ_IconLoader::instance()->loadIcon("previous", TDEIcon::Desktop, is));
b->setIconSet(SQ_IconLoader::instance()->loadIcon("go-previous", TDEIcon::Desktop, is));
connect(b, TQT_SIGNAL(clicked()), this, TQT_SIGNAL(previous()));
connect(b, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotResetPause()));
b = new TQToolButton(options);
b->setIconSet(SQ_IconLoader::instance()->loadIcon("next", TDEIcon::Desktop, is));
b->setIconSet(SQ_IconLoader::instance()->loadIcon("go-next", TDEIcon::Desktop, is));
connect(b, TQT_SIGNAL(clicked()), this, TQT_SIGNAL(next()));
connect(b, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotResetPause()));

Loading…
Cancel
Save