summaryrefslogtreecommitdiffstats
path: root/src/bnpview.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 01:27:23 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 01:27:23 -0500
commitca8194cffa6785bf7acc087334a4c0fb2dd011ec (patch)
tree66019b568f3d8a6f451d0b309259951c1974f5f6 /src/bnpview.cpp
parentfb2f280090d15158cb86952faf75b858567d723c (diff)
downloadbasket-ca8194cffa6785bf7acc087334a4c0fb2dd011ec.tar.gz
basket-ca8194cffa6785bf7acc087334a4c0fb2dd011ec.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/bnpview.cpp')
-rw-r--r--src/bnpview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bnpview.cpp b/src/bnpview.cpp
index db6fc54..34a714c 100644
--- a/src/bnpview.cpp
+++ b/src/bnpview.cpp
@@ -418,7 +418,7 @@ void BNPView::setupActions()
TQT_TQOBJECT(this), TQT_SLOT(hideOnEscape()), actionCollection(), "window_hide" );
m_actHideWindow->setEnabled(Settings::useSystray()); // Init here !
- m_actExportToHtml = new TDEAction( i18n("&HTML Web Page..."), "html", 0,
+ m_actExportToHtml = new TDEAction( i18n("&HTML Web Page..."), "text-html", 0,
TQT_TQOBJECT(this), TQT_SLOT(exportToHTML()), actionCollection(), "basket_export_html" );
new TDEAction( i18n("K&Notes"), "knotes", 0,
TQT_TQOBJECT(this), TQT_SLOT(importKNotes()), actionCollection(), "basket_import_knotes" );
@@ -432,7 +432,7 @@ void BNPView::setupActions()
TQT_TQOBJECT(this), TQT_SLOT(importStickyNotes()), actionCollection(), "basket_import_sticky_notes" );
new TDEAction( i18n("&Tomboy"), "tintin", 0,
TQT_TQOBJECT(this), TQT_SLOT(importTomboy()), actionCollection(), "basket_import_tomboy" );
- new TDEAction( i18n("Text &File..."), "txt", 0,
+ new TDEAction( i18n("Text &File..."), "text-plain", 0,
TQT_TQOBJECT(this), TQT_SLOT(importTextFile()), actionCollection(), "basket_import_text_file" );
new TDEAction( i18n("&Backup && Restore..."), "", 0,
@@ -497,9 +497,9 @@ void BNPView::setupActions()
connect( insertWizardMapper, TQT_SIGNAL(mapped(int)), TQT_TQOBJECT(this), TQT_SLOT(insertWizard(int)) );
// m_actInsertText = new TDEAction( i18n("Plai&n Text"), "text", "Ctrl+T", actionCollection(), "insert_text" );
- m_actInsertHtml = new TDEAction( i18n("&Text"), "html", "Insert", actionCollection(), "insert_html" );
+ m_actInsertHtml = new TDEAction( i18n("&Text"), "text-html", "Insert", actionCollection(), "insert_html" );
m_actInsertLink = new TDEAction( i18n("&Link"), "link", "Ctrl+Y", actionCollection(), "insert_link" );
- m_actInsertImage = new TDEAction( i18n("&Image"), "image", "", actionCollection(), "insert_image" );
+ m_actInsertImage = new TDEAction( i18n("&Image"), "image-x-generic", "", actionCollection(), "insert_image" );
m_actInsertColor = new TDEAction( i18n("&Color"), "colorset", "", actionCollection(), "insert_color" );
m_actInsertLauncher=new TDEAction( i18n("L&auncher"), "launch", "", actionCollection(), "insert_launcher" );