summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/source/skeletonmaker/skeletoncommon.cxx15
1 files changed, 4 insertions, 11 deletions
diff --git a/unodevtools/source/skeletonmaker/skeletoncommon.cxx b/unodevtools/source/skeletonmaker/skeletoncommon.cxx
index 37af9d5c57a0..25679bcb33dc 100644
--- a/unodevtools/source/skeletonmaker/skeletoncommon.cxx
+++ b/unodevtools/source/skeletonmaker/skeletoncommon.cxx
@@ -274,23 +274,16 @@ void checkDefaultInterfaces(
const OUString & propertyhelper)
{
if ( services.empty() ) {
- if (interfaces.find("com.sun.star.lang.XServiceInfo") != interfaces.end())
- interfaces.erase("com.sun.star.lang.XServiceInfo");
+ interfaces.erase("com.sun.star.lang.XServiceInfo");
} else {
if (interfaces.find("com.sun.star.lang.XServiceInfo") == interfaces.end())
interfaces.insert("com.sun.star.lang.XServiceInfo");
}
if ( propertyhelper.equals("_") ) {
- if (interfaces.find("com.sun.star.beans.XPropertySet")
- != interfaces.end())
- interfaces.erase("com.sun.star.beans.XPropertySet");
- if (interfaces.find("com.sun.star.beans.XFastPropertySet")
- != interfaces.end())
- interfaces.erase("com.sun.star.beans.XFastPropertySet");
- if (interfaces.find("com.sun.star.beans.XPropertyAccess")
- != interfaces.end())
- interfaces.erase("com.sun.star.beans.XPropertyAccess");
+ interfaces.erase("com.sun.star.beans.XPropertySet");
+ interfaces.erase("com.sun.star.beans.XFastPropertySet");
+ interfaces.erase("com.sun.star.beans.XPropertyAccess");
}
}