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
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
Hashids that you need but...
by
Thaddy
[
Today
at 06:10:34 am]
Recommended way to build ...
by
TRon
[
Today
at 06:02:51 am]
C++ conversion : what is ...
by
Thaddy
[
Today
at 05:44:34 am]
Setting the fpc path
by
TRon
[
Today
at 05:30:14 am]
Game Music Emulator
by
Guva
[
Today
at 05:25:58 am]
Bitmap 16bit R5G6B5
by
JZS
[
Today
at 05:13:29 am]
Incorrect FPC/Lazarus bui...
by
TRon
[
Today
at 04:58:15 am]
"Show Compiler Dialog"
by
JuhaManninen
[
Today
at 02:04:04 am]
Loading text data from a ...
by
carl_caulkett
[
Today
at 01:10:53 am]
Is there a better web-bro...
by
QEnnay
[September 17, 2024, 11:50:29 pm]
LazReport / FreeReport qu...
by
dseligo
[September 17, 2024, 11:37:59 pm]
Complex objects and JsonO...
by
Flea
[September 17, 2024, 11:02:28 pm]
Best way to exchange data...
by
cdbc
[September 17, 2024, 10:16:27 pm]
TListView.OnChange Event ...
by
msintle
[September 17, 2024, 10:11:04 pm]
Broken Icon Display on ma...
by
msintle
[September 17, 2024, 10:09:18 pm]
Compiler error when check...
by
ASerge
[September 17, 2024, 08:57:07 pm]
how to convert pdf to png...
by
zeljko
[September 17, 2024, 08:35:54 pm]
Simple multithreading cod...
by
MarkMLl
[September 17, 2024, 08:31:05 pm]
Golang vs free pascal
by
gidesa
[September 17, 2024, 08:27:08 pm]
Extended Module Player
by
TRon
[September 17, 2024, 06:32:25 pm]
Listview how to custom or...
by
VisualLab
[September 17, 2024, 05:48:48 pm]
Non-OS dependent way to u...
by
carl_caulkett
[September 17, 2024, 05:27:57 pm]
Problems with case statem...
by
MarkMLl
[September 17, 2024, 03:02:33 pm]
Tessellated Pattern: How ...
by
Boleeman
[September 17, 2024, 02:15:20 pm]
macOS 11 Cocoa headers
by
Hansaplast
[September 17, 2024, 12:44:49 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] class function TCDWSButton.GetText doesn't return a result (Read 2478 times)
lagprogramming
Sr. Member
Posts: 406
[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: 5349
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: 406
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: 5349
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: 12299
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