diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-07-25 18:52:22 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-07-26 09:00:54 +0200 |
commit | c6b959536fb75dae31235d78bebb51f4c140e6cf (patch) | |
tree | 59ae50c342608b02f814499f02363b6b5c4914d5 /vcl/source | |
parent | 4f0bb4d27c30b4b8cce6e0502661afcf32464a44 (diff) |
Fix unintendet re-add of JobSetup::GetValue
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/gdi/jobset.cxx | 13 |
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 ) |