summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-01-13 09:36:46 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-01-13 23:02:37 +0000
commit612981fc8fd7a35d8112951e05e1b2cf0f5f1c08 (patch)
tree3256b4dffb2d9d7e7ab543e98e2936b38041e9c1 /vcl
parent62188aac68b30affbe144f8bd06f346f0e749cf9 (diff)
callcatcher: update and remove newly unused code
Change-Id: Iff3ce7c3a44010b3bc81fc0d2156216ee13948dc
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/filter/FilterConfigCache.cxx10
-rw-r--r--vcl/source/filter/FilterConfigCache.hxx2
2 files changed, 0 insertions, 12 deletions
diff --git a/vcl/source/filter/FilterConfigCache.cxx b/vcl/source/filter/FilterConfigCache.cxx
index 344dba9ac7c2..edc3a38bb5d6 100644
--- a/vcl/source/filter/FilterConfigCache.cxx
+++ b/vcl/source/filter/FilterConfigCache.cxx
@@ -156,7 +156,6 @@ void FilterConfigCache::ImplInit()
{
OUString STYPE ( "Type" );
OUString SUINAME ( "UIName" );
- OUString SUICOMPONENT ( "UIComponent" );
OUString SFLAGS ( "Flags" );
OUString SMEDIATYPE ( "MediaType" );
OUString SEXTENSIONS ( "Extensions" );
@@ -196,10 +195,6 @@ void FilterConfigCache::ImplInit()
if (lFlags[0].equalsIgnoreAsciiCase("export"))
aEntry.nFlags = 2;
- OUString sUIComponent;
- xFilterSet->getPropertyValue(SUICOMPONENT) >>= sUIComponent;
- aEntry.bHasDialog = sUIComponent.getLength();
-
::rtl::OUString sFormatName;
xFilterSet->getPropertyValue(SFORMATNAME) >>= sFormatName;
aEntry.CreateFilterName( sFormatName );
@@ -552,11 +547,6 @@ sal_Bool FilterConfigCache::IsExportPixelFormat( sal_uInt16 nFormat )
return (nFormat < aExport.size()) && aExport[ nFormat ].bIsPixelFormat;
}
-sal_Bool FilterConfigCache::IsExportDialog( sal_uInt16 nFormat )
-{
- return (nFormat < aExport.size()) && aExport[ nFormat ].bHasDialog;
-}
-
// ------------------------------------------------------------------------
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/source/filter/FilterConfigCache.hxx b/vcl/source/filter/FilterConfigCache.hxx
index 829122fb88f1..df1cc10a964a 100644
--- a/vcl/source/filter/FilterConfigCache.hxx
+++ b/vcl/source/filter/FilterConfigCache.hxx
@@ -49,7 +49,6 @@ class FilterConfigCache
// user data
String sFilterName;
- sal_Bool bHasDialog : 1;
sal_Bool bIsInternalFilter : 1;
sal_Bool bIsPixelFormat : 1;
@@ -119,7 +118,6 @@ public:
sal_Bool IsExportInternalFilter( sal_uInt16 nFormat );
sal_Bool IsExportPixelFormat( sal_uInt16 nFormat );
- sal_Bool IsExportDialog( sal_uInt16 nFormat );
FilterConfigCache( sal_Bool bUseConfig );
~FilterConfigCache();