summaryrefslogtreecommitdiffstats
path: root/kpdf
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 20:10:10 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 20:10:10 -0500
commit65dde0a768bcc214233c58d5473e8e9f9c039ea7 (patch)
tree3af974e352ba22355e00664104a16edf9a2b2bf2 /kpdf
parent50e3d450c5b66e77578534f80c4e604b36c56c4d (diff)
downloadtdegraphics-65dde0a768bcc214233c58d5473e8e9f9c039ea7.tar.gz
tdegraphics-65dde0a768bcc214233c58d5473e8e9f9c039ea7.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 'kpdf')
-rw-r--r--kpdf/part.cpp2
-rw-r--r--kpdf/ui/pageview.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/kpdf/part.cpp b/kpdf/part.cpp
index 8d325fc8..f4fe5a24 100644
--- a/kpdf/part.cpp
+++ b/kpdf/part.cpp
@@ -945,7 +945,7 @@ void Part::slotShowMenu(const KPDFPage *page, const TQPoint &point)
else
popup->insertItem( SmallIcon("bookmark_add"), i18n("Add Bookmark"), 1 );
if ( m_pageView->canFitPageWidth() )
- popup->insertItem( SmallIcon("viewmagfit"), i18n("Fit Width"), 2 );
+ popup->insertItem( SmallIcon("zoom-fit-best"), i18n("Fit Width"), 2 );
//popup->insertItem( SmallIcon("pencil"), i18n("Edit"), 3 );
//popup->setItemEnabled( 3, false );
reallyShow = true;
diff --git a/kpdf/ui/pageview.cpp b/kpdf/ui/pageview.cpp
index c008fe29..682c0f67 100644
--- a/kpdf/ui/pageview.cpp
+++ b/kpdf/ui/pageview.cpp
@@ -262,15 +262,15 @@ void PageView::setupActions( TDEActionCollection * ac )
d->aZoomFitPage = new TDEToggleAction( i18n("Fit to &Page"), "view_fit_window", 0, ac, "zoom_fit_page" );
connect( d->aZoomFitPage, TQT_SIGNAL( toggled( bool ) ), TQT_SLOT( slotFitToPageToggled( bool ) ) );
- d->aZoomFitText = new TDEToggleAction( i18n("Fit to &Text"), "viewmagfit", 0, ac, "zoom_fit_text" );
+ d->aZoomFitText = new TDEToggleAction( i18n("Fit to &Text"), "zoom-fit-best", 0, ac, "zoom_fit_text" );
connect( d->aZoomFitText, TQT_SIGNAL( toggled( bool ) ), TQT_SLOT( slotFitToTextToggled( bool ) ) );
// rotate actions
TDEAction *action;
- action = new TDEAction( i18n("Rotate Right"), "rotate_cw", TDEShortcut( "Ctrl+Shift++" ),
+ action = new TDEAction( i18n("Rotate Right"), "object-rotate-right", TDEShortcut( "Ctrl+Shift++" ),
TQT_TQOBJECT(this), TQT_SLOT( slotRotateRight() ), ac, "rotate_right" );
- action = new TDEAction( i18n("Rotate Left"), "rotate_ccw", TDEShortcut( "Ctrl+Shift+-" ),
+ action = new TDEAction( i18n("Rotate Left"), "object-rotate-left", TDEShortcut( "Ctrl+Shift+-" ),
TQT_TQOBJECT(this), TQT_SLOT( slotRotateLeft() ), ac, "rotate_left" );
// View-Layout actions