summaryrefslogtreecommitdiffstats
path: root/lib/widgets/propeditor/Mainpage.dox
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 13:57:48 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-27 10:48:41 +0900
commit392b47409ac925384208e3abfdd039f6be47ce56 (patch)
treef2587004d7fee4717f569ef0d0cbc12e67b9f3b6 /lib/widgets/propeditor/Mainpage.dox
parent2693e2b9a63c993da052449b5bdca241d05ed95f (diff)
downloadtdevelop-392b47409ac925384208e3abfdd039f6be47ce56.tar.gz
tdevelop-392b47409ac925384208e3abfdd039f6be47ce56.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit d2728dd8dbad48f045a5eca1899924df15633a89)
Diffstat (limited to 'lib/widgets/propeditor/Mainpage.dox')
-rw-r--r--lib/widgets/propeditor/Mainpage.dox4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/propeditor/Mainpage.dox b/lib/widgets/propeditor/Mainpage.dox
index d77010d0..411a2ffe 100644
--- a/lib/widgets/propeditor/Mainpage.dox
+++ b/lib/widgets/propeditor/Mainpage.dox
@@ -76,7 +76,7 @@ A simple example on how to create a property editor and use it with one property
list->addProperty("My Group", new Property(Property::String, "Second Property",
"This is my second property", "Hello"));
list->addProperty(new Property(Property::Color, "Third Property",
- "This is my third property", QColor("green")));
+ "This is my third property", TQColor("green")));
m_editor->populateProperties(*list);
\endcode
@@ -94,7 +94,7 @@ More advanced example with property buffers and list intersection:
list->addProperty("My Group", new Property(Property::String, "Second Property",
"This is my second property", "Hello"));
list->addProperty(new Property(Property::Color, "Third Property",
- "This is my third property", QColor("green")));
+ "This is my third property", TQColor("green")));
PropertyList *list2 = new PropertyList;
list2->addProperty("My Group", new Property(Property::Integer, "First Property",