Kaydet (Commit) afe501df authored tarafından Thorsten Behrens's avatar Thorsten Behrens

vcl: fix dbg_util build after enum class change

Fixup after 74ab2a68

Change-Id: I57492bdee7cc4d3676b476a2a867211e5aa0bd13
üst 1f8c3e3b
......@@ -782,12 +782,12 @@ PPDParser::PPDParser( const OUString& rFile ) :
char const* pSetupType = "<unknown>";
switch( pKey->m_eSetupType )
{
case PPDKey::ExitServer: pSetupType = "ExitServer";break;
case PPDKey::Prolog: pSetupType = "Prolog";break;
case PPDKey::DocumentSetup: pSetupType = "DocumentSetup";break;
case PPDKey::PageSetup: pSetupType = "PageSetup";break;
case PPDKey::JCLSetup: pSetupType = "JCLSetup";break;
case PPDKey::AnySetup: pSetupType = "AnySetup";break;
case PPDKey::SetupType::ExitServer: pSetupType = "ExitServer";break;
case PPDKey::SetupType::Prolog: pSetupType = "Prolog";break;
case PPDKey::SetupType::DocumentSetup: pSetupType = "DocumentSetup";break;
case PPDKey::SetupType::PageSetup: pSetupType = "PageSetup";break;
case PPDKey::SetupType::JCLSetup: pSetupType = "JCLSetup";break;
case PPDKey::SetupType::AnySetup: pSetupType = "AnySetup";break;
default: break;
};
SAL_INFO("vcl.unx.print", "\t\"" << pKey->getKey() << "\" ("
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment