summaryrefslogtreecommitdiffstats
path: root/tdeui/kguiitem.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-05 15:59:23 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-05 15:59:23 -0500
commit7cd4adc908abf8c5e3b391c4a88f0514ba8468c4 (patch)
tree59f4f1c7a50f5701c442aed0c69ecb9249b09076 /tdeui/kguiitem.cpp
parent67d3c303f3ba902ebc8337d683cc184340d5db32 (diff)
downloadtdelibs-7cd4adc908abf8c5e3b391c4a88f0514ba8468c4.tar.gz
tdelibs-7cd4adc908abf8c5e3b391c4a88f0514ba8468c4.zip
Add proper refcounting option to TDEMainWindow
This relates to the discussion at: http://lists.kde.org/?l=kde-core-devel&m=107208785431497&w=2 Clean up a few minor code formatting issues
Diffstat (limited to 'tdeui/kguiitem.cpp')
-rw-r--r--tdeui/kguiitem.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tdeui/kguiitem.cpp b/tdeui/kguiitem.cpp
index dd30e1fe8..9d623bb39 100644
--- a/tdeui/kguiitem.cpp
+++ b/tdeui/kguiitem.cpp
@@ -155,7 +155,7 @@ TQIconSet KGuiItem::iconSet( TDEIcon::Group group, int size, TDEInstance* instan
{
if( !d->m_iconName.isEmpty())
{
-// some caching here would(?) come handy
+ // some caching here would(?) come handy
return instance->iconLoader()->loadIconSet( d->m_iconName, group, size, true, false );
}
else
@@ -164,7 +164,9 @@ TQIconSet KGuiItem::iconSet( TDEIcon::Group group, int size, TDEInstance* instan
}
}
else
+ {
return TQIconSet();
+ }
}
TQString KGuiItem::iconName() const