diff options
author | Michele Calgaro <[email protected]> | 2024-03-09 18:58:02 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-22 21:28:42 +0900 |
commit | 3723148aa321530969ae4dd7472c461b94b5405e (patch) | |
tree | e5d11a855ae5ab9b409ce5f478b3a78d310f39f5 /chalk | |
parent | e220a1b2b9fa4c97bbcaabf51cd259e62edd3ab3 (diff) | |
download | koffice-3723148aa321530969ae4dd7472c461b94b5405e.tar.gz koffice-3723148aa321530969ae4dd7472c461b94b5405e.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 7a7827396f90ad06945cd5a367f93d8ffd380e0f)
Diffstat (limited to 'chalk')
-rw-r--r-- | chalk/HACKING | 6 | ||||
-rw-r--r-- | chalk/IMAGE_LIBRARIES | 2 | ||||
-rw-r--r-- | chalk/doc/DESIGN.obsolete | 2 | ||||
-rw-r--r-- | chalk/doc/chalk.xmi | 4 | ||||
-rw-r--r-- | chalk/doc/howtofilters.txt | 6 | ||||
-rw-r--r-- | chalk/doc/profiles.txt | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/chalk/HACKING b/chalk/HACKING index 7673eb70..f5ddc1e4 100644 --- a/chalk/HACKING +++ b/chalk/HACKING @@ -31,7 +31,7 @@ Shared pointers Getter/setter - Chalk doesn't use Qt's properties -- yet. If you want to introduce use of + Chalk doesn't use TQt's properties -- yet. If you want to introduce use of properties, convert any and all classes in Chalk before committing. Getter/setters are named 'x() for getters and setX(int x) for setters. If you @@ -49,7 +49,7 @@ Class naming Function naming - Functions should be named in camelBackedFashion, to conform to Qt's standards. + Functions should be named in camelBackedFashion, to conform to TQt's standards. If you encounter functions in c_style_like_this, feel free to rename. Also: verbNoun -- i.e., rotateLayer, not layer_rotate. The latter is a true c-ism, introduced by a language that needs to prefix the 'class' name to every function @@ -90,4 +90,4 @@ Slots and signals Prefix slots with slot and signals with sig: slotUpdateSelection, sigSelectionUpdated. -Boudewijn Rempt
\ No newline at end of file +Boudewijn Rempt diff --git a/chalk/IMAGE_LIBRARIES b/chalk/IMAGE_LIBRARIES index 1d26fb96..390ceb52 100644 --- a/chalk/IMAGE_LIBRARIES +++ b/chalk/IMAGE_LIBRARIES @@ -247,7 +247,7 @@ too big to easily evaluate for me. Advantages - - It is used in other Qt applications, like Julius + - It is used in other TQt applications, like Julius - Probably very good Disadvantages diff --git a/chalk/doc/DESIGN.obsolete b/chalk/doc/DESIGN.obsolete index 2f0d25ca..3d218990 100644 --- a/chalk/doc/DESIGN.obsolete +++ b/chalk/doc/DESIGN.obsolete @@ -91,7 +91,7 @@ User interface ui - The dialogs appear to be created by hand, not with Qt + The dialogs appear to be created by hand, not with TQt Designer. Besides, many are inoperational. other diff --git a/chalk/doc/chalk.xmi b/chalk/doc/chalk.xmi index d803727a..ce42344a 100644 --- a/chalk/doc/chalk.xmi +++ b/chalk/doc/chalk.xmi @@ -983,7 +983,7 @@ pixels in the brush." visibility="public" xmi.id="705" type="virtual KisAlphaMas </UML:Class> <UML:Class stereotype="class" visibility="public" xmi.id="740" name="KisGuide" > <UML:Operation visibility="public" xmi.id="745" type="" name="KisGuide" > - <UML:Parameter visibility="private" xmi.id="746" value="" type="Qt :: Orientation" name="o" /> + <UML:Parameter visibility="private" xmi.id="746" value="" type="TQt :: Orientation" name="o" /> </UML:Operation> <UML:Operation visibility="public" xmi.id="747" type="bool" name="isSelected" /> <UML:Operation visibility="public" xmi.id="748" type="double" name="position" /> @@ -1050,7 +1050,7 @@ pixels in the brush." visibility="public" xmi.id="705" type="virtual KisAlphaMas <UML:Operation visibility="public" xmi.id="802" type="" name="KisGuideMgr" /> <UML:Operation visibility="public" xmi.id="803" type="KisGuideSP" name="add" > <UML:Parameter visibility="private" xmi.id="804" value="" type="double" name="pos" /> - <UML:Parameter visibility="private" xmi.id="805" value="" type="Qt :: Orientation" name="o" /> + <UML:Parameter visibility="private" xmi.id="805" value="" type="TQt :: Orientation" name="o" /> </UML:Operation> <UML:Operation visibility="public" xmi.id="806" type="void" name="erase" > <UML:Parameter visibility="private" xmi.id="807" value="" type="QPaintDevice *" name="device" /> diff --git a/chalk/doc/howtofilters.txt b/chalk/doc/howtofilters.txt index e586ae19..dad6fe45 100644 --- a/chalk/doc/howtofilters.txt +++ b/chalk/doc/howtofilters.txt @@ -1,7 +1,7 @@ The goal of this howto is to explain how to create a filter for chalk -2) using Qt/Designer for the ConfigurationWidget +2) using TQt/Designer for the ConfigurationWidget Just copy the following in a file named (for instance) myfiltercw.ui : <!DOCTYPE UI><UI version="3.3" stdsetdef="1"> @@ -25,6 +25,6 @@ Just copy the following in a file named (for instance) myfiltercw.ui : <layoutdefaults spacing="6" margin="11"/> </UI> -And then open Qt/Designer +And then open TQt/Designer -NOTE: it would be nicer if I knew how to copy (using autoconf/automake) this file in $(TQTDIR)/tools/designer/templates
\ No newline at end of file +NOTE: it would be nicer if I knew how to copy (using autoconf/automake) this file in $(TQTDIR)/tools/designer/templates diff --git a/chalk/doc/profiles.txt b/chalk/doc/profiles.txt index c1841d52..52a80941 100644 --- a/chalk/doc/profiles.txt +++ b/chalk/doc/profiles.txt @@ -60,7 +60,7 @@ Paste from clipboard Two cases: Chalk has placed a clip on the copy profile set in the Settings, or none. An external clip is always RGB8 (for now, no - doubt Qt will extend its clipboard once RGB16 + doubt TQt will extend its clipboard once RGB16 images or RGB half images become widespread), so in those cases we always need an RGB profile. |