diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 01:27:25 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 01:27:25 -0500 |
commit | 4d065be81fc8d312d1d65cb5ec6b0b86e9c72529 (patch) | |
tree | ba9bc8d2e975a234f87cc49b3fd06412aa0b700c /kexi/plugins | |
parent | f622de3311951b2ab5a5d045edddbd12dbd6806d (diff) | |
download | koffice-4d065be81fc8d312d1d65cb5ec6b0b86e9c72529.tar.gz koffice-4d065be81fc8d312d1d65cb5ec6b0b86e9c72529.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 'kexi/plugins')
-rw-r--r-- | kexi/plugins/forms/kexiformpart.cpp | 2 | ||||
-rw-r--r-- | kexi/plugins/reports/kexireportfactory.cpp | 2 | ||||
-rw-r--r-- | kexi/plugins/tables/kexitabledesignerview.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/kexi/plugins/forms/kexiformpart.cpp b/kexi/plugins/forms/kexiformpart.cpp index 11d711c3..c53212fb 100644 --- a/kexi/plugins/forms/kexiformpart.cpp +++ b/kexi/plugins/forms/kexiformpart.cpp @@ -501,7 +501,7 @@ void KexiFormPart::setupCustomPropertyPanelTabs(KTabWidget *tab, KexiMainWindow* KexiProject *prj = mainWin->project(); d->dataSourcePage->setProject(prj); - tab->addTab( d->dataSourcePage, SmallIconSet("database"), ""); + tab->addTab( d->dataSourcePage, SmallIconSet("application-vnd.oasis.opendocument.database"), ""); tab->setTabToolTip( d->dataSourcePage, i18n("Data Source")); tab->addTab( d->objectTreeView, SmallIconSet("widgets"), ""); diff --git a/kexi/plugins/reports/kexireportfactory.cpp b/kexi/plugins/reports/kexireportfactory.cpp index 35036222..57753a30 100644 --- a/kexi/plugins/reports/kexireportfactory.cpp +++ b/kexi/plugins/reports/kexireportfactory.cpp @@ -104,7 +104,7 @@ KexiReportFactory::createWidget(const TQCString &c, TQWidget *p, const char *n, if(c == "Label") return new Label(text, p, n); else if(c == "PicLabel") - return new PicLabel(DesktopIcon("image"), p, n); + return new PicLabel(DesktopIcon("image-x-generic"), p, n); else if(c == "ReportLine") return new ReportLine(p, n); else if(c == "KexiSubReport") diff --git a/kexi/plugins/tables/kexitabledesignerview.cpp b/kexi/plugins/tables/kexitabledesignerview.cpp index df715cbe..767b5733 100644 --- a/kexi/plugins/tables/kexitabledesignerview.cpp +++ b/kexi/plugins/tables/kexitabledesignerview.cpp @@ -122,7 +122,7 @@ KexiTableDesignerView::KexiTableDesignerView(KexiMainWindow *win, TQWidget *pare KexiTableViewColumn *col = new KexiTableViewColumn("pk", KexiDB::Field::Text, TQString(), i18n("Additional information about the field")); - col->setIcon( KexiUtils::colorizeIconToTextColor( SmallIcon("info"), d->view->palette() ) ); + col->setIcon( KexiUtils::colorizeIconToTextColor( SmallIcon("application-vnd.tde.info"), d->view->palette() ) ); col->setHeaderTextVisible(false); col->field()->setSubType("TDEIcon"); col->setReadOnly(true); |