diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 20:10:11 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 20:10:11 -0500 |
commit | ecc461cfc7c0790fca7bc78b736ebd45b6d3d702 (patch) | |
tree | df50969031e2e7a82dcfd9fef711e168405f4c9d /krdc | |
parent | 88d7ebff6abf9536530707e79b9997ad2b24241b (diff) | |
download | tdenetwork-ecc461cfc7c0790fca7bc78b736ebd45b6d3d702.tar.gz tdenetwork-ecc461cfc7c0790fca7bc78b736ebd45b6d3d702.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 'krdc')
-rw-r--r-- | krdc/krdc.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/krdc/krdc.cpp b/krdc/krdc.cpp index b871e82f..f9a7280a 100644 --- a/krdc/krdc.cpp +++ b/krdc/krdc.cpp @@ -492,7 +492,7 @@ void KRDC::switchToFullscreen(bool scaling) t->setToggle(FS_AUTOHIDE_ID); t->addConnection(FS_AUTOHIDE_ID, TQT_SIGNAL(toggled(bool)), TQT_TQOBJECT(this), TQT_SLOT(setFsToolbarAutoHide(bool))); - t->insertButton("window_nofullscreen", FS_FULLSCREEN_ID); + t->insertButton("view-restore", FS_FULLSCREEN_ID); TDEToolBarButton *fullscreenButton = t->getButton(FS_FULLSCREEN_ID); TQToolTip::add(fullscreenButton, i18n("Fullscreen")); t->setToggle(FS_FULLSCREEN_ID); @@ -512,7 +512,7 @@ void KRDC::switchToFullscreen(bool scaling) t->setItemAutoSized(FS_HOSTLABEL_ID, true); if (scalingPossible) { - t->insertButton("viewmagfit", FS_SCALE_ID); + t->insertButton("zoom-fit-best", FS_SCALE_ID); TDEToolBarButton *scaleButton = t->getButton(FS_SCALE_ID); TQToolTip::add(scaleButton, i18n("Scale view")); t->setToggle(FS_SCALE_ID); @@ -592,7 +592,7 @@ void KRDC::switchToNormal(bool scaling) m_toolbar = t; t->setIconText(TDEToolBar::IconTextRight); connect(t, TQT_SIGNAL(placeChanged(TQDockWindow::Place)), TQT_SLOT(toolbarChanged())); - t->insertButton("window_fullscreen", 0, true, i18n("Fullscreen")); + t->insertButton("view-fullscreen", 0, true, i18n("Fullscreen")); TDEToolBarButton *fullscreenButton = t->getButton(0); TQToolTip::add(fullscreenButton, i18n("Fullscreen")); TQWhatsThis::add(fullscreenButton, i18n("Switches to full screen. If the remote desktop has a different screen resolution, Remote Desktop Connection will automatically switch to the nearest resolution.")); @@ -601,7 +601,7 @@ void KRDC::switchToNormal(bool scaling) t->addConnection(0, TQT_SIGNAL(toggled(bool)), TQT_TQOBJECT(this), TQT_SLOT(enableFullscreen(bool))); if (m_view->supportsScaling()) { - t->insertButton("viewmagfit", 1, true, i18n("Scale")); + t->insertButton("zoom-fit-best", 1, true, i18n("Scale")); TDEToolBarButton *scaleButton = t->getButton(1); TQToolTip::add(scaleButton, i18n("Scale view")); TQWhatsThis::add(scaleButton, i18n("This option scales the remote screen to fit your window size.")); |