We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello Graeme and other!
I noticed that when I compile fpgui_toolkit.pas, FPC also compiles all the AggPas library, even when I don't use -dAggCanvas option.
-dAggCanvas
I searched why and found that Agg2D is declared without condition in fpgui_toolkit.pas.
Shouldn't we add something like this?
uses { ... } U_Command, U_Pdf, U_Report, U_ReportImages, U_Visu, fpg_trayicon{$ifdef AggCanvas}, Agg2D{$endif},
The text was updated successfully, but these errors were encountered:
It's in x11/fpgui_toolkit.pas. For comparison, in gdi/fpgui_toolkit.pas, Agg2D is not declared at all.
So can we simply remove it from x11/fpgui_toolkit.pas?
Sorry, something went wrong.
No branches or pull requests
Hello Graeme and other!
I noticed that when I compile fpgui_toolkit.pas, FPC also compiles all the AggPas library, even when I don't use
-dAggCanvas
option.I searched why and found that Agg2D is declared without condition in fpgui_toolkit.pas.
Shouldn't we add something like this?
The text was updated successfully, but these errors were encountered: