Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Widgetset
»
CustomDrawn
»
[SOLVED] class function TCDWSButton.GetText doesn't return a result
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Feature announcement: Fun...
by
Thaddy
[
Today
at 10:37:34 am]
Is changing name supposed...
by
Joanna
[
Today
at 10:30:47 am]
Possible work-around for ...
by
Thaddy
[
Today
at 10:13:31 am]
How to download a file fr...
by
c4p
[
Today
at 09:44:13 am]
list of IT assets
by
xinyiman
[
Today
at 09:36:55 am]
program locks up using se...
by
cdbc
[
Today
at 09:34:10 am]
.cvd ClamAV database comp...
by
Onur2x
[
Today
at 08:14:34 am]
Small DBMS project and Ho...
by
TRon
[
Today
at 07:44:06 am]
Check for updates and upd...
by
KodeZwerg
[
Today
at 07:43:19 am]
python for lazarus
by
Mongkey
[
Today
at 06:23:44 am]
Scope of cross-platform
by
TRon
[
Today
at 06:07:59 am]
Something wrong when i cl...
by
TRon
[
Today
at 05:57:57 am]
Connect Bluetooth Chess b...
by
tearsfornations
[
Today
at 05:48:10 am]
Lazarus for RISC OS
by
TRon
[
Today
at 05:36:04 am]
Are We Dead Yet?
by
dieselnutjob
[
Today
at 12:35:09 am]
How to POST a SOAPAction ...
by
rvk
[
Today
at 12:12:23 am]
is it possible to create ...
by
andyf97
[
Today
at 12:04:07 am]
What to change ModePortA,...
by
ccrause
[June 08, 2023, 10:17:09 pm]
Access violation with use...
by
Martin_fr
[June 08, 2023, 08:34:18 pm]
Suggestion on the lines o...
by
Skvoznjak
[June 08, 2023, 06:43:43 pm]
Best way to include lots ...
by
PascalDragon
[June 08, 2023, 06:14:51 pm]
DBEdit - display setting ...
by
rvk
[June 08, 2023, 05:44:34 pm]
[SOLVED] Help for downloa...
by
magleft
[June 08, 2023, 05:02:48 pm]
Testers needed: FpDebug a...
by
Martin_fr
[June 08, 2023, 03:27:07 pm]
Making a little chart app
by
circular
[June 08, 2023, 01:23:15 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] class function TCDWSButton.GetText doesn't return a result (Read 487 times)
lagprogramming
Sr. Member
Posts: 296
[SOLVED] class function TCDWSButton.GetText doesn't return a result
«
on:
March 27, 2023, 11:40:25 am »
lcl/interfaces/customdrawn/customdrawnwsstdctrls.pas contains the following function. It can be noticed that it doesn't return a result.
Code: Pascal
[Select]
[+]
[-]
class
function
TCDWSButton
.
GetText
(
const
AWinControl
:
TWinControl
;
var
AText
:
String
)
:
Boolean
;
var
lCDWinControl
:
TCDWinControl
;
begin
lCDWinControl
:
=
TCDWinControl
(
AWinControl
.
Handle
)
;
if
lCDWinControl
.
CDControl
=
nil
then
Exit
;
AText
:
=
TCDIntfButton
(
lCDWinControl
.
CDControl
)
.
Caption
;
end
;
New code mimics result assignment of class function TCDWSCustomEdit.GetText
Code: Pascal
[Select]
[+]
[-]
class
function
TCDWSButton
.
GetText
(
const
AWinControl
:
TWinControl
;
var
AText
:
String
)
:
Boolean
;
var
lCDWinControl
:
TCDWinControl
;
begin
Result
:
=
False
;
lCDWinControl
:
=
TCDWinControl
(
AWinControl
.
Handle
)
;
if
lCDWinControl
.
CDControl
=
nil
then
Exit
;
AText
:
=
TCDIntfButton
(
lCDWinControl
.
CDControl
)
.
Caption
;
Result
:
=
True
;
end
;
«
Last Edit: March 30, 2023, 06:21:01 pm by lagprogramming
»
Logged
Bart
Hero Member
Posts: 4980
Re: class function TCDWSButton.GetText doesn't return a result
«
Reply #1 on:
March 27, 2023, 11:59:12 am »
Please report in the bugtracker and attach your patch (as a proper diff).
Bart
Logged
lagprogramming
Sr. Member
Posts: 296
Re: class function TCDWSButton.GetText doesn't return a result
«
Reply #2 on:
March 27, 2023, 04:49:53 pm »
Here is a patch
Code: Pascal
[Select]
[+]
[-]
diff
--
git a
/
lcl
/
interfaces
/
customdrawn
/
customdrawnwsstdctrls
.
pas
b
/
lcl
/
interfaces
/
customdrawn
/
customdrawnwsstdctrls
.
pas
index
795ca36d3e
..
1a90af04e9
100644
---
a
/
lcl
/
interfaces
/
customdrawn
/
customdrawnwsstdctrls
.
pas
+++
b
/
lcl
/
interfaces
/
customdrawn
/
customdrawnwsstdctrls
.
pas
@@
-
1704
,
9
+
1704
,
11
@@
class
function
TCDWSButton
.
GetText
(
const
AWinControl
:
TWinControl
;
var
lCDWinControl
:
TCDWinControl
;
begin
+
Result
:
=
False
;
lCDWinControl
:
=
TCDWinControl
(
AWinControl
.
Handle
)
;
if
lCDWinControl
.
CDControl
=
nil
then
Exit
;
AText
:
=
TCDIntfButton
(
lCDWinControl
.
CDControl
)
.
Caption
;
+
Result
:
=
True
;
end
;
class
procedure
TCDWSButton
.
SetText
(
const
AWinControl
:
TWinControl
;
Logged
Bart
Hero Member
Posts: 4980
Re: class function TCDWSButton.GetText doesn't return a result
«
Reply #3 on:
March 27, 2023, 06:27:52 pm »
Please put it in the bugtracker, so it won't be forgotten.
I know next to nothing about CD widgetset.
Bart
Logged
wp
Hero Member
Posts: 10875
Re: class function TCDWSButton.GetText doesn't return a result
«
Reply #4 on:
March 30, 2023, 03:49:05 pm »
Like Bart I have no experience with customdrawn WS, but since your solution is obvious and straightforward, I committed it. But please, report issues in the bugtracker where it is easier for us to trace regressions and side-effects.
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Widgetset
»
CustomDrawn
»
[SOLVED] class function TCDWSButton.GetText doesn't return a result
TinyPortal
© 2005-2018