diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-03-26 12:54:48 -0500 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-03-26 20:30:52 +0100 |
commit | 351c4cfaf0b36a04db86a7e1821029a46cab0545 (patch) | |
tree | e5d84a7a7ceed15f4ac0cd02ef5ef0cdcc054206 | |
parent | d8f9b99f86770f945b9c40460b88ac2db1714919 (diff) | |
download | digikam-351c4cfaf0b36a04db86a7e1821029a46cab0545.tar.gz digikam-351c4cfaf0b36a04db86a7e1821029a46cab0545.zip |
Bring tablet icon into XDG compliance
(cherry picked from commit 9328727634626b853e6a99b081f44fc281331773)
-rw-r--r-- | digikam/imageplugins/coreplugin/iccprooftool.cpp | 2 | ||||
-rw-r--r-- | digikam/imageplugins/coreplugin/imageeffect_iccproof.cpp | 2 | ||||
-rw-r--r-- | digikam/utilities/setup/setupicc.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/digikam/imageplugins/coreplugin/iccprooftool.cpp b/digikam/imageplugins/coreplugin/iccprooftool.cpp index 9c7c3fef..dda5c947 100644 --- a/digikam/imageplugins/coreplugin/iccprooftool.cpp +++ b/digikam/imageplugins/coreplugin/iccprooftool.cpp @@ -336,7 +336,7 @@ ICCProofTool::ICCProofTool(TQObject* parent) //---------- "Workspace" Page Setup --------------------------------- m_toolBoxWidgets->insertItem(WORKSPACEPAGE, spaceProfiles, - SmallIconSet("tablet"), i18n("Workspace Profile")); + SmallIconSet("input-tablet"), i18n("Workspace Profile")); TQWhatsThis::add(spaceProfiles, i18n("<p>Set here all parameters relevant to Color Workspace " "Profiles.</p>")); diff --git a/digikam/imageplugins/coreplugin/imageeffect_iccproof.cpp b/digikam/imageplugins/coreplugin/imageeffect_iccproof.cpp index fb0f8d7e..d396025c 100644 --- a/digikam/imageplugins/coreplugin/imageeffect_iccproof.cpp +++ b/digikam/imageplugins/coreplugin/imageeffect_iccproof.cpp @@ -322,7 +322,7 @@ ImageEffect_ICCProof::ImageEffect_ICCProof(TQWidget* parent) //---------- "Workspace" Page Setup --------------------------------- m_toolBoxWidgets->insertItem(WORKSPACEPAGE, spaceProfiles, - SmallIconSet("tablet"), i18n("Workspace Profile")); + SmallIconSet("input-tablet"), i18n("Workspace Profile")); TQWhatsThis::add(spaceProfiles, i18n("<p>Set here all parameters relevant to Color Workspace " "Profiles.</p>")); diff --git a/digikam/utilities/setup/setupicc.cpp b/digikam/utilities/setup/setupicc.cpp index 454fb0e4..576f5758 100644 --- a/digikam/utilities/setup/setupicc.cpp +++ b/digikam/utilities/setup/setupicc.cpp @@ -240,7 +240,7 @@ SetupICC::SetupICC(TQWidget* parent, KDialogBase* dialog ) grid2->addMultiCellWidget(d->infoMonitorProfiles, 1, 1, 3, 3); TQLabel *workIcon = new TQLabel(d->profilesGB); - workIcon->setPixmap(SmallIcon("tablet")); + workIcon->setPixmap(SmallIcon("input-tablet")); TQLabel *workProfiles = new TQLabel(i18n("Workspace:"), d->profilesGB); d->workProfilesKC = new SqueezedComboBox(d->profilesGB); workProfiles->setBuddy(d->workProfilesKC); |