mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 22:58:14 +02:00
Keith: Fixed some bugs
git-svn-id: trunk@619 -
This commit is contained in:
parent
0df04c9229
commit
2e747471d8
3
Makefile
3
Makefile
@ -156,7 +156,8 @@ override PACKAGE_VERSION=0.7a
|
||||
ifndef LCLPLATFORM
|
||||
ifeq ($(OS_TARGET), win32)
|
||||
LCLPLATFORM=win32
|
||||
export OPT+=-dSUPPORTS_RESOURCES
|
||||
override FPCOPT+=-dSUPPORTS_RESOURCES
|
||||
export FPCOPT
|
||||
else
|
||||
LCLPLATFORM=gtk
|
||||
endif
|
||||
|
@ -37,7 +37,8 @@ destdir=$(BASEDIR)/dist
|
||||
ifndef LCLPLATFORM
|
||||
ifeq ($(OS_TARGET), win32)
|
||||
LCLPLATFORM=win32
|
||||
export OPT+=-dSUPPORTS_RESOURCES
|
||||
override FPCOPT+=-dSUPPORTS_RESOURCES
|
||||
export FPCOPT
|
||||
else
|
||||
LCLPLATFORM=gtk
|
||||
endif
|
||||
|
@ -110,8 +110,8 @@ Begin
|
||||
{csComboBox, }csEdit, csMemo:
|
||||
Begin
|
||||
CapLen := GetWindowTextLength((Sender As TWinControl).Handle);
|
||||
GetWindowText((Sender As TWinControl).Handle, @Caption, CapLen + 1);
|
||||
Data := StrPas(PChar(@Caption));
|
||||
GetWindowText((Sender As TWinControl).Handle, Caption, CapLen + 1);
|
||||
Data := StrPas(Caption);
|
||||
End;
|
||||
csPage:
|
||||
Begin
|
||||
@ -2953,6 +2953,9 @@ End;
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.10 2002/01/24 07:34:50 lazarus
|
||||
Keith: Fixed some bugs
|
||||
|
||||
Revision 1.9 2002/01/21 08:42:06 lazarus
|
||||
Keith: Fixed some run-time exceptions for FPC 1.1
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user