diff options
author | Timothy Pearson <[email protected]> | 2014-10-22 11:54:59 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-22 11:54:59 -0500 |
commit | bdfee9ac19493da144cafdc37708a9d72c5ad011 (patch) | |
tree | 249679886665b46a5d12450d41aa0a99ec880b10 /src/kmplayerapp.cpp | |
parent | 0716052891aa6f7ff330dbb645587137e20a9f76 (diff) | |
download | kmplayer-bdfee9ac19493da144cafdc37708a9d72c5ad011.tar.gz kmplayer-bdfee9ac19493da144cafdc37708a9d72c5ad011.zip |
Repair mimetype icon usage, part 1. The following are not fully verified in source as of this commit due to ubiquity: info, unknown
Diffstat (limited to 'src/kmplayerapp.cpp')
-rw-r--r-- | src/kmplayerapp.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kmplayerapp.cpp b/src/kmplayerapp.cpp index 205451b..d9daf24 100644 --- a/src/kmplayerapp.cpp +++ b/src/kmplayerapp.cpp @@ -592,7 +592,7 @@ KDE_NO_EXPORT void KMPlayerApp::initActions () { toggleView = new TDEAction (i18n ("C&onsole"), TQString ("konsole"), TDEShortcut (), TQT_TQOBJECT(m_player->view()), TQT_SLOT (toggleVideoConsoleWindow ()), ac, "view_video"); //new TDEAction (i18n ("V&ideo"), TQString (video-x-generic"), TDEShortcut (), m_view, TQT_SLOT (toggleVideoConsoleWindow ()), ac, "view_video"); new TDEAction (i18n ("Pla&y List"), TQString ("player_playlist"), TDEShortcut (), m_player, TQT_SLOT (showPlayListWindow ()), ac, "view_playlist"); - new TDEAction (i18n ("Minimal mode"), TQString ("empty"), TDEShortcut (), TQT_TQOBJECT(this), TQT_SLOT (slotMinimalMode ()), ac, "view_minimal"); + new TDEAction (i18n ("Minimal mode"), TQString ("application-x-zerosize"), TDEShortcut (), TQT_TQOBJECT(this), TQT_SLOT (slotMinimalMode ()), ac, "view_minimal"); new TDEAction (i18n ("50%"), 0, 0, TQT_TQOBJECT(this), TQT_SLOT (zoom50 ()), ac, "view_zoom_50"); new TDEAction (i18n ("100%"), TQString ("zoom-fit-best"), TDEShortcut (), TQT_TQOBJECT(this), TQT_SLOT (zoom100 ()), ac, "view_zoom_100"); new TDEAction (i18n ("150%"), 0, 0, TQT_TQOBJECT(this), TQT_SLOT (zoom150 ()), ac, "view_zoom_150"); @@ -2041,7 +2041,7 @@ KDE_NO_EXPORT void KMPlayerDVDSource::sync (bool fromUI) { KDE_NO_EXPORT void KMPlayerDVDSource::prefLocation (TQString & item, TQString & icon, TQString & tab) { item = i18n ("Source"); - icon = TQString ("source"); + icon = TQString ("text-x-src"); tab = i18n ("DVD"); } @@ -2217,7 +2217,7 @@ KDE_NO_EXPORT void KMPlayerVCDSource::sync (bool fromUI) { KDE_NO_EXPORT void KMPlayerVCDSource::prefLocation (TQString & item, TQString & icon, TQString & tab) { item = i18n ("Source"); - icon = TQString ("source"); + icon = TQString ("text-x-src"); tab = i18n ("VCD"); } |