summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-26 10:56:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-26 10:56:43 +0900
commita7b1339d13fd9421f51172013a4c990d9b5b5eae (patch)
tree6748b1e0a8101c61237b63589e123d921fd42afd
parent18375c775fc3257e809cd68730035c93aa8fc8c6 (diff)
downloadlibkipi-a7b1339d13fd9421f51172013a4c990d9b5b5eae.tar.gz
libkipi-a7b1339d13fd9421f51172013a4c990d9b5b5eae.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--TODO2
-rw-r--r--libkipi/libkipi/design6
2 files changed, 4 insertions, 4 deletions
diff --git a/TODO b/TODO
index ee7d58e..460ff01 100644
--- a/TODO
+++ b/TODO
@@ -29,7 +29,7 @@ we have:
To be done:
- Implement a widget to let the user select ImageCollections. The minimal
interface should be:
- class ImageCollectionSelector : public QWidget {
+ class ImageCollectionSelector : public TQWidget {
QValueList<ImageCollection> imageCollections;
}
diff --git a/libkipi/libkipi/design b/libkipi/libkipi/design
index 350b735..fa494f0 100644
--- a/libkipi/libkipi/design
+++ b/libkipi/libkipi/design
@@ -59,19 +59,19 @@ The implementation would looks something like this:
class Browser {
public:
Browser( BrowserShared* );
- virtual QWidget* widget( QWidget* parent );
+ virtual TQWidget* widget( TQWidget* parent );
KURL::List images();
// all the other stuff to make a shared class.
signals:
- void descriptionChanged( const QString& );
+ void descriptionChanged( const TQString& );
void previewChanged( const QPixmap& );
}
class BrowserShared {
public:
- virtual QWidget* widget( QWidget* parent ) = 0;
+ virtual TQWidget* widget( TQWidget* parent ) = 0;
KURL::List images() = 0;
signals:
...