diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/corelib/fpg_utils.pas | 6 | ||||
-rw-r--r-- | src/corelib/x11/fpg_netlayer_x11.pas | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/corelib/fpg_utils.pas b/src/corelib/fpg_utils.pas index 822051a5..97adb7db 100644 --- a/src/corelib/fpg_utils.pas +++ b/src/corelib/fpg_utils.pas @@ -28,10 +28,10 @@ uses // *** Platform specific functions *** -function fpgToOSEncoding(aString: TfpgString): string; -function fpgFromOSEncoding(aString: string): TfpgString; +function fpgToOSEncoding(aString: TfpgString): string; +function fpgFromOSEncoding(aString: string): TfpgString; procedure fpgOpenURL(const aURL: TfpgString); -function fpgFileSize(const AFilename: TfpgString): integer; +function fpgFileSize(const AFilename: TfpgString): integer; // *** Common functions for all platforms *** diff --git a/src/corelib/x11/fpg_netlayer_x11.pas b/src/corelib/x11/fpg_netlayer_x11.pas index bd104dae..1294a1aa 100644 --- a/src/corelib/x11/fpg_netlayer_x11.pas +++ b/src/corelib/x11/fpg_netlayer_x11.pas @@ -1076,7 +1076,7 @@ var Number: PLongWord; begin Result := FAtomSupported[naNUMBER_OF_DESKTOPS] - and WindowGetPropertyCardinal(FRootWindow, FNetAtoms[naNUMBER_OF_DESKTOPS], Count, Number); + and WindowGetPropertyCardinal(FRootWindow, FNetAtoms[naNUMBER_OF_DESKTOPS], Count, Number); if not Result then Exit; Desktops := PLongInt(Number)^; |