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
min() function behavior i...
by
dsiders
[
Today
at 02:40:45 am]
Anonymous Unions-Middle R...
by
jamie
[
Today
at 02:24:53 am]
lhelp not working on Linu...
by
dbannon
[
Today
at 02:15:18 am]
Installing GDB on MAC OS ...
by
dbannon
[
Today
at 01:53:46 am]
Magic, non referenced var...
by
jamie
[
Today
at 01:33:46 am]
Are We Dead Yet?
by
Joanna
[
Today
at 12:27:08 am]
How to dock Stack and Pro...
by
Molochnik
[May 30, 2023, 11:20:19 pm]
[Solved] OnMouseDown - Ho...
by
marcio2003
[May 30, 2023, 08:46:43 pm]
LazPaint (alpha-blending,...
by
CM630
[May 30, 2023, 08:35:04 pm]
Default and speed effect
by
Martin_fr
[May 30, 2023, 06:22:00 pm]
Why is the rectangle the ...
by
Bart
[May 30, 2023, 05:56:45 pm]
process exeuction with in...
by
Edson
[May 30, 2023, 05:33:56 pm]
BufferData not let appen...
by
paweld
[May 30, 2023, 05:18:39 pm]
PostgreSQL: typeinfo erro...
by
Чебурашка
[May 30, 2023, 05:16:48 pm]
Problema con base de dato...
by
Edson
[May 30, 2023, 04:35:57 pm]
Adding Text to LineSerie ...
by
Dzandaa
[May 30, 2023, 03:27:54 pm]
Best way to delete an ins...
by
Tomi
[May 30, 2023, 02:59:21 pm]
Fast Base64 encoding/deco...
by
Okoba
[May 30, 2023, 02:37:57 pm]
Hole punching - Step by S...
by
Warfley
[May 30, 2023, 02:28:15 pm]
[Solved] TTreeFilterEdit....
by
AlexTP
[May 30, 2023, 01:49:57 pm]
TFPGObjectList and custom...
by
jamie
[May 30, 2023, 01:38:51 pm]
OPC client with Lazarus
by
Miniekans
[May 30, 2023, 01:35:54 pm]
Threads - stringlist and ...
by
Warfley
[May 30, 2023, 01:28:00 pm]
How to use customize outp...
by
artem101
[May 30, 2023, 11:38:43 am]
Code clean up at TFontMan...
by
howardpc
[May 30, 2023, 10:37:59 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] class function TCDWSButton.GetText doesn't return a result (Read 467 times)
lagprogramming
Sr. Member
Posts: 291
[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: 4971
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: 291
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: 4971
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: 10849
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