summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/jobset.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-07-25 18:52:22 +0200
committerThomas Arnhold <thomas@arnhold.org>2011-07-26 09:00:54 +0200
commitc6b959536fb75dae31235d78bebb51f4c140e6cf (patch)
tree59ae50c342608b02f814499f02363b6b5c4914d5 /vcl/source/gdi/jobset.cxx
parent4f0bb4d27c30b4b8cce6e0502661afcf32464a44 (diff)
Fix unintendet re-add of JobSetup::GetValue
Diffstat (limited to 'vcl/source/gdi/jobset.cxx')
-rw-r--r--vcl/source/gdi/jobset.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/vcl/source/gdi/jobset.cxx b/vcl/source/gdi/jobset.cxx
index d06e16dcf0cb..785a4387e99c 100644
--- a/vcl/source/gdi/jobset.cxx
+++ b/vcl/source/gdi/jobset.cxx
@@ -210,19 +210,6 @@ XubString JobSetup::GetDriverName() const
// -----------------------------------------------------------------------
-String JobSetup::GetValue( const String& rKey ) const
-{
- if( mpData )
- {
- ::boost::unordered_map< ::rtl::OUString, ::rtl::OUString, ::rtl::OUStringHash >::const_iterator it;
- it = mpData->maValueMap.find( rKey );
- return it != mpData->maValueMap.end() ? String( it->second ) : String();
- }
- return String();
-}
-
-// -----------------------------------------------------------------------
-
void JobSetup::SetValue( const String& rKey, const String& rValue )
{
if( ! mpData )