From 15ea930a6b722a37b80a0e2d79791efb95c2ac2c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 23 Sep 2023 12:51:00 +0900 Subject: Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version Signed-off-by: Michele Calgaro --- .../docs/koffice/kugar/progguide.docbook | 52 +++++++++++----------- 1 file changed, 26 insertions(+), 26 deletions(-) (limited to 'koffice-i18n-es') diff --git a/koffice-i18n-es/docs/koffice/kugar/progguide.docbook b/koffice-i18n-es/docs/koffice/kugar/progguide.docbook index a1bc4800..333d4204 100644 --- a/koffice-i18n-es/docs/koffice/kugar/progguide.docbook +++ b/koffice-i18n-es/docs/koffice/kugar/progguide.docbook @@ -236,7 +236,7 @@ this prolog >setReportData const QString &const TQString &nombre_arch_datos @@ -253,7 +253,7 @@ this prolog >setReportData const QIODevice &const TQIODevice &disp_datos_es @@ -261,9 +261,9 @@ this prolog >Toma los datos para el informe del archivo disp_datos_es. El dispositivo de E/S puede ser cualquier heredero de la clase QIODeviceTQIODevice. Por ejemplo, para recoger registros directamente de la base de datos, cree un heredero de QIODeviceTQIODevice y redefina toda la funcionalidad necesaria. @@ -274,7 +274,7 @@ this prolog >setReportTemplate const QString &const TQString &nombre_arch_plantilla @@ -291,7 +291,7 @@ this prolog >setReportTemplate const QIODevice &const TQIODevice &disp_es_plantilla @@ -299,8 +299,8 @@ this prolog >Toma la plantilla del informe del archivo disp_es_plantilla . El dispositivo de E/S puede ser cualquier heredero de la clase QIODevice. Por ejemplo, para obtener una plantilla del informe de algĂșn sitio de almacenamiento de la red o una base de datos, cree un heredero de QIODevice y redefina toda la funcionalidad necesaria. +>TQIODevice. Por ejemplo, para obtener una plantilla del informe de algĂșn sitio de almacenamiento de la red o una base de datos, cree un heredero de TQIODevice y redefina toda la funcionalidad necesaria. @@ -410,14 +410,14 @@ public: KugarWidgetPlugin (); QStringList keys () const; - QWidget *create (const QString & classname, QWidget * parent = + TQWidget *create (const TQString & classname, TQWidget * parent = 0, const char *name = 0); - QString group (const QString &) const; - QIconSet iconSet (const QString &) const; - QString includeFile (const QString &) const; - QString toolTip (const QString &) const; - QString whatsThis (const QString &) const; - bool isContainer (const QString &) const; + TQString group (const TQString &) const; + QIconSet iconSet (const TQString &) const; + TQString includeFile (const TQString &) const; + TQString toolTip (const TQString &) const; + TQString whatsThis (const TQString &) const; + bool isContainer (const TQString &) const; }; @@ -595,7 +595,7 @@ QStringList KugarWidgetPlugin::keys () const return list; } -QWidget* KugarWidgetPlugin::create (const QString & key, QWidget * parent, +TQWidget* KugarWidgetPlugin::create (const TQString & key, TQWidget * parent, const char *name) { if (key == "KReportViewer") @@ -603,40 +603,40 @@ QWidget* KugarWidgetPlugin::create (const QString & key, QWidget * parent, return 0; } -QString KugarWidgetPlugin::group (const QString & feature) const +TQString KugarWidgetPlugin::group (const TQString & feature) const { if (feature == "KReportViewer") return "Display"; - return QString::null; + return TQString::null; } -QIconSet KugarWidgetPlugin::iconSet (const QString &) const +QIconSet KugarWidgetPlugin::iconSet (const TQString &) const { return QIconSet (QPixmap (kugar_pixmap)); } -QString KugarWidgetPlugin::includeFile (const QString & feature) const +TQString KugarWidgetPlugin::includeFile (const TQString & feature) const { if (feature == "KReportViewer") return "kugar.h"; - return QString::null; + return TQString::null; } -QString KugarWidgetPlugin::toolTip (const QString & feature) const +TQString KugarWidgetPlugin::toolTip (const TQString & feature) const { if (feature == "KReportViewer") return "Kugar report viewer widget"; - return QString::null; + return TQString::null; } -QString KugarWidgetPlugin::whatsThis (const QString & feature) const +TQString KugarWidgetPlugin::whatsThis (const TQString & feature) const { if (feature == "KReportViewer") return "A widget to view xml reports"; - return QString::null; + return TQString::null; } -bool KugarWidgetPlugin::isContainer (const QString &) const +bool KugarWidgetPlugin::isContainer (const TQString &) const { return FALSE; } -- cgit v1.2.1