diff options
author | Timothy Pearson <[email protected]> | 2014-10-22 01:27:27 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-22 01:27:27 -0500 |
commit | a67fdce271e7f28519f7023f6f01e95f39b67815 (patch) | |
tree | ee88035441ad8e61f92a366996c8ad98ec5a87bd /src/torkview.cpp | |
parent | 0264b4998b70ae84e322dac955a06c7a0ff80b18 (diff) | |
download | tork-a67fdce271e7f28519f7023f6f01e95f39b67815.tar.gz tork-a67fdce271e7f28519f7023f6f01e95f39b67815.zip |
Bring most mimetypes in line with XDG specifications. The following are not fully verified in source as of this commit due to ubiquity: html, empty, info, make, man, misc, source, unknown
Diffstat (limited to 'src/torkview.cpp')
-rw-r--r-- | src/torkview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/torkview.cpp b/src/torkview.cpp index ace59d8..bf5ebcc 100644 --- a/src/torkview.cpp +++ b/src/torkview.cpp @@ -1508,7 +1508,7 @@ void torkView::populateMenu() )+"</qt>"); KURLLabel *buttonStart = new KURLLabel(welcomeitem); - buttonStart->setPixmap(SmallIcon("info")); + buttonStart->setPixmap(SmallIcon("application-vnd.tde.info")); welcomeitem->insertHitWidget(0,buttonStart); connect(buttonStart, SIGNAL(leftClickedURL()), SIGNAL(aboutTor())); @@ -1572,7 +1572,7 @@ void torkView::populateMenu() //firefoxitem->insertWidget(1,countries); buttonStart = new KURLLabel(firefoxitem); - buttonStart->setPixmap(SmallIcon("info")); + buttonStart->setPixmap(SmallIcon("application-vnd.tde.info")); firefoxitem->insertHitWidget(0,buttonStart); connect(buttonStart, SIGNAL(leftClickedURL()), SLOT(downloadTorButton())); @@ -1620,7 +1620,7 @@ void torkView::populateMenu() buttonStart = new KURLLabel(mixminionitem); - buttonStart->setPixmap(SmallIcon("info")); + buttonStart->setPixmap(SmallIcon("application-vnd.tde.info")); mixminionitem->insertHitWidget(0,buttonStart); connect(buttonStart, SIGNAL(leftClickedURL()), SLOT(downloadMixminion())); |