summaryrefslogtreecommitdiffstats
path: root/kexi/main/printing
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2014-10-13 20:09:58 -0500
committerTimothy Pearson <[email protected]>2014-10-13 20:09:58 -0500
commit0997355d79648e53be30911482d56707fead6090 (patch)
treec6bcd7c93cab582ac2c3c34341005e226375dc0d /kexi/main/printing
parentd504497c10d3cc9441a39245af1723e8c0ae556d (diff)
downloadkoffice-0997355d79648e53be30911482d56707fead6090.tar.gz
koffice-0997355d79648e53be30911482d56707fead6090.zip
Bring mail_forward, mail_new, mail_replyall, mail_reply, mail_send, player_pause, player_play, player_stop, player_rew, player_fwd, player_start, player_end, rotate_ccw, rotate_cw, window_fullscreen, window_nofullscreen, window_new, viewmagfit, viewmag+, viewmag1, and viewmag- icons into XDG compliance
Diffstat (limited to 'kexi/main/printing')
-rw-r--r--kexi/main/printing/kexisimpleprintpreviewwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kexi/main/printing/kexisimpleprintpreviewwindow.cpp b/kexi/main/printing/kexisimpleprintpreviewwindow.cpp
index 6ddb1951..3870f09e 100644
--- a/kexi/main/printing/kexisimpleprintpreviewwindow.cpp
+++ b/kexi/main/printing/kexisimpleprintpreviewwindow.cpp
@@ -180,11 +180,11 @@ KexiSimplePrintPreviewWindow::KexiSimplePrintPreviewWindow(
#ifndef KEXI_NO_UNFINISHED
//! @todo unfinished
- id = m_toolbar->insertWidget( -1, 0, new KPushButton(BarIconSet("viewmag+"), i18n("Zoom In"), m_toolbar));
+ id = m_toolbar->insertWidget( -1, 0, new KPushButton(BarIconSet("zoom-in"), i18n("Zoom In"), m_toolbar));
m_toolbar->addConnection(id, TQT_SIGNAL(clicked()), TQT_TQOBJECT(this), TQT_SLOT(slotZoomInClicked()));
m_toolbar->insertSeparator();
- id = m_toolbar->insertWidget( -1, 0, new KPushButton(BarIconSet("viewmag-"), i18n("Zoom Out"), m_toolbar));
+ id = m_toolbar->insertWidget( -1, 0, new KPushButton(BarIconSet("zoom-out"), i18n("Zoom Out"), m_toolbar));
m_toolbar->addConnection(id, TQT_SIGNAL(clicked()), TQT_TQOBJECT(this), TQT_SLOT(slotZoomOutClicked()));
m_toolbar->insertSeparator();
#endif