summaryrefslogtreecommitdiffstats
path: root/tdemdi/tdemdidockcontainer.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 01:27:30 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 01:27:30 -0500
commit2cd15151863796c2e708f6193f0f8420a6363383 (patch)
tree0ea2792da210f89f8a66c45472749b2e13d36404 /tdemdi/tdemdidockcontainer.cpp
parent628f37ef39a7f2dd8d64a3f8b0c08f384362fc91 (diff)
downloadtdelibs-2cd15151863796c2e708f6193f0f8420a6363383.tar.gz
tdelibs-2cd15151863796c2e708f6193f0f8420a6363383.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 'tdemdi/tdemdidockcontainer.cpp')
-rw-r--r--tdemdi/tdemdidockcontainer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdemdi/tdemdidockcontainer.cpp b/tdemdi/tdemdidockcontainer.cpp
index d6771b597..36c99d3af 100644
--- a/tdemdi/tdemdidockcontainer.cpp
+++ b/tdemdi/tdemdidockcontainer.cpp
@@ -226,7 +226,7 @@ void KMdiDockContainer::insertWidget ( KDockWidget *dwdg, TQPixmap pixmap, const
connect( btn, TQT_SIGNAL( clicked() ), this, TQT_SLOT( changeOverlapMode() ) );
}
- m_tb->appendTab( pixmap.isNull() ? SmallIcon( "misc" ) : pixmap, tab, w->tabPageLabel() );
+ m_tb->appendTab( pixmap.isNull() ? SmallIcon( "application-vnd.tde.misc" ) : pixmap, tab, w->tabPageLabel() );
m_tb->tab( tab )->installEventFilter( this );
kdDebug( 760 ) << k_funcinfo << "Added tab with label " << w->tabPageLabel() <<
" to the tabbar" << endl;
@@ -509,7 +509,7 @@ void KMdiDockContainer::setPixmap( KDockWidget* widget , const TQPixmap& pixmap
if ( id == -1 )
return ;
KMultiTabBarTab *tab = m_tb->tab( id );
- tab->setIcon( pixmap.isNull() ? SmallIcon( "misc" ) : pixmap );
+ tab->setIcon( pixmap.isNull() ? SmallIcon( "application-vnd.tde.misc" ) : pixmap );
}
void KMdiDockContainer::save( TQDomElement& dockEl )