mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-07 07:57:13 +01:00
(Qt): typo in listview header
git-svn-id: trunk@11740 -
This commit is contained in:
parent
5dfcb11f1e
commit
84abb757e2
@ -770,7 +770,7 @@ begin
|
||||
TWIChild := QTreeWidgetItem_create(0);
|
||||
QTreeWidgetItem_setFlags(TWIChild, QtItemIsEnabled);
|
||||
QTreeWidgetItem_addChild(TWI, TWIChild);
|
||||
Str := UTF8Encode(ALV.Column[AIndex].Caption);
|
||||
Str := UTF8Decode(ALV.Column[AIndex].Caption);
|
||||
QTreeWidgetItem_setText(TWI, AIndex, @Str);
|
||||
end;
|
||||
|
||||
@ -870,7 +870,7 @@ begin
|
||||
TWI := QTreeWidget_headerItem(TW);
|
||||
if TWI <> NiL then
|
||||
begin
|
||||
Str := UTF8Encode(ACaption);
|
||||
Str := UTF8Decode(ACaption);
|
||||
QTreeWidgetItem_setText(TWI, AIndex, @Str);
|
||||
end;
|
||||
end;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user