diff options
author | David Tardon <dtardon@redhat.com> | 2010-11-27 10:17:35 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2010-11-27 10:17:49 +0100 |
commit | 947461a9b0c5f5f57135c05643bf5a51260ec36d (patch) | |
tree | 49de2315749ee343b0bb08b46fa9c2cbbdf86c19 /vcl/unx/source/printer/ppdparser.cxx | |
parent | 5442fa723dccd6156b9b53978c82dfb5ac3df3b8 (diff) |
fix debug build with dbglevel=3
Diffstat (limited to 'vcl/unx/source/printer/ppdparser.cxx')
-rw-r--r-- | vcl/unx/source/printer/ppdparser.cxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/vcl/unx/source/printer/ppdparser.cxx b/vcl/unx/source/printer/ppdparser.cxx index c10f8aca8664..b8466ec55877 100644 --- a/vcl/unx/source/printer/ppdparser.cxx +++ b/vcl/unx/source/printer/ppdparser.cxx @@ -750,9 +750,8 @@ PPDParser::PPDParser( const String& rFile ) : case PPDKey::AnySetup: pSetupType = "AnySetup";break; default: break; }; - fprintf( stderr, "\t\"%s\" (\"%s\") (%d values) OrderDependency: %d %s\n", + fprintf( stderr, "\t\"%s\" (%d values) OrderDependency: %d %s\n", BSTRING( pKey->getKey() ).GetBuffer(), - BSTRING( pKey->m_aUITranslation ).GetBuffer(), pKey->countValues(), pKey->m_nOrderDependency, pSetupType ); @@ -772,12 +771,10 @@ PPDParser::PPDParser( const String& rFile ) : case eNo: pVType = "no";break; default: break; }; - fprintf( stderr, "option: \"%s\" (\"%s\"), value: type %s \"%s\" (\"%s\")\n", + fprintf( stderr, "option: \"%s\", value: type %s \"%s\"\n", BSTRING( pValue->m_aOption ).GetBuffer(), - BSTRING( pValue->m_aOptionTranslation ).GetBuffer(), pVType, - BSTRING( pValue->m_aValue ).GetBuffer(), - BSTRING( pValue->m_aValueTranslation ).GetBuffer() ); + BSTRING( pValue->m_aValue ).GetBuffer() ); } } fprintf( stderr, "constraints: (%d found)\n", m_aConstraints.size() ); |