diff options
author | Michele Calgaro <[email protected]> | 2023-09-26 11:50:58 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-26 11:50:58 +0900 |
commit | 49e49d1876484adcc6c4f264b44b7f4cee28acc2 (patch) | |
tree | 1304c6506aae240b499e2a2db3779186c07e3708 /kivio | |
parent | 074b714e29c0bbcd2bbfc6a931e252c4c90d07a9 (diff) | |
download | koffice-49e49d1876484adcc6c4f264b44b7f4cee28acc2.tar.gz koffice-49e49d1876484adcc6c4f264b44b7f4cee28acc2.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kivio')
-rw-r--r-- | kivio/NOTES | 4 | ||||
-rw-r--r-- | kivio/kiviopart/config/kivio.kcfg | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kivio/NOTES b/kivio/NOTES index e6349c33..d2fe4e6b 100644 --- a/kivio/NOTES +++ b/kivio/NOTES @@ -23,12 +23,12 @@ Here are the steps the code does: a DragBarButton. DragBarButton emits a closeRequired( DragBarButton * ) signal, KivioStackBar catches it with slotDeleteButton( DragBarButton * ), - KivioStackBar then emits deleteButton(DragBarButton *, QWidget *, KivioStackBar *), + KivioStackBar then emits deleteButton(DragBarButton *, TQWidget *, KivioStackBar *), KivioDocument then catches this with slotDeleteStencilSet( signature ) and iterates through all stencils on all pages of the document making sure it is ok to delete this stencil set. If it is, it removes the stencil (spawner) set with a call to removeSpawnerSet( ... ) and emits the signal - sig_deleteStencilSet( DragBarButton *, QWidget *, KivioStackBar * ) + sig_deleteStencilSet( DragBarButton *, TQWidget *, KivioStackBar * ) StencilBarDockManager catches this with slotDeleteStencilSet( .... ) and tells the KivioStackBar object to delete the passed DragBarButton and widget associated with it. It then checks if any pages are visible on the KivioStackBar object. If diff --git a/kivio/kiviopart/config/kivio.kcfg b/kivio/kiviopart/config/kivio.kcfg index deadfad4..c39409b7 100644 --- a/kivio/kiviopart/config/kivio.kcfg +++ b/kivio/kiviopart/config/kivio.kcfg @@ -56,7 +56,7 @@ </entry> <entry name="GridColor" type="Color"> <label>Color of the grid lines.</label> - <default code="true">QColor(200, 200, 200)</default> + <default code="true">TQColor(200, 200, 200)</default> </entry> <entry name="GridXSpacing" type="Double"> <label>Spacing between vertical grid lines.</label> |