Hi all,
I sent the following fix to Jesus a few days ago, but I have not heard back so don't know if he received it or if he has checked it in yet.

Basically in PrintersDlgs you have code that looks similar to this just after the implementation.

{$IFDEF LCLCarbon}
uses <Unit Names Here>
{$ELSE}
{$I cupsprndialogs.inc}
uses <Unit Names Here>
{$ENDIF}


This should really read

{$IFDEF LCLCarbon}
uses <Unit Names Here>
{$I cupsprndialogs.inc} // Moving it here works
{$ELSE}
uses <Unit Names Here>
{$ENDIF}

I currently do not have access to a patch facility so I can't provide one this time, so I hope someone can move that include to fix this error and check it in.

Thanks,


Dominique.

_________________________________________________________________
    To unsubscribe: mail [EMAIL PROTECTED] with
               "unsubscribe" as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to