After changing some colour settings, code apperance has a dot in place of each space character
Code: Select all
...//.Set.the.fixed.printer.settings
...g_PrintData->SetOrientation.(wxPORTRAIT);
...g_PrintData->SetPaperId.(wxPAPER_A4);
...g_PageSetupData.=.new.wxPageSetupDialogData;
Code: Select all
// Set the fixed printer settings
g_PrintData->SetOrientation (wxPORTRAIT);
g_PrintData->SetPaperId (wxPAPER_A4);
g_PageSetupData = new wxPageSetupDialogData;
Many thanks
Colin