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 | ea114c7a26b3ef234831969c9ab886cd13cbbdfc (patch) | |
tree | fc7107e5f9b19f137301ad5cce2baac618d7ba48 | |
parent | 05297ef49d594469dfba117b92f8f376384ebbc2 (diff) | |
download | tellico-ea114c7a26b3ef234831969c9ab886cd13cbbdfc.tar.gz tellico-ea114c7a26b3ef234831969c9ab886cd13cbbdfc.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
-rw-r--r-- | src/mainwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 563fc1a..04f3c56 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -219,7 +219,7 @@ void MainWindow::initActions() { action = new TDEAction(actionCollection(), "new_video_collection"); action->setText(i18n("New &Video Collection")); - action->setIconSet(UserIconSet(TQString::fromLatin1("video"))); + action->setIconSet(UserIconSet(TQString::fromLatin1("video-x-generic"))); action->setToolTip(i18n("Create a new video collection")); fileNewMenu->insert(action); connect(action, TQT_SIGNAL(activated()), collectionMapper, TQT_SLOT(map())); @@ -621,7 +621,7 @@ void MainWindow::initActions() { m_mergeEntry->setToolTip(i18n("Merge the selected entries")); m_mergeEntry->setEnabled(false); // gets enabled when more than 1 entry is selected - action = new TDEAction(i18n("&Generate Reports..."), TQString::fromLatin1("document"), 0, TQT_TQOBJECT(this), + action = new TDEAction(i18n("&Generate Reports..."), TQString::fromLatin1("text-x-generic"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotShowReportDialog()), actionCollection(), "coll_reports"); action->setToolTip(i18n("Generate collection reports")); |