summaryrefslogtreecommitdiffstats
path: root/koffice-i18n-sv/docs/koffice/kugar/progguide.docbook
diff options
context:
space:
mode:
Diffstat (limited to 'koffice-i18n-sv/docs/koffice/kugar/progguide.docbook')
-rw-r--r--koffice-i18n-sv/docs/koffice/kugar/progguide.docbook52
1 files changed, 26 insertions, 26 deletions
diff --git a/koffice-i18n-sv/docs/koffice/kugar/progguide.docbook b/koffice-i18n-sv/docs/koffice/kugar/progguide.docbook
index e72d2adf..8718f3f4 100644
--- a/koffice-i18n-sv/docs/koffice/kugar/progguide.docbook
+++ b/koffice-i18n-sv/docs/koffice/kugar/progguide.docbook
@@ -234,7 +234,7 @@ this prolog
>setReportData</function
></funcdef
> <paramdef
->const QString &amp;<parameter
+>const TQString &amp;<parameter
>datafilnamn</parameter
></paramdef
> </funcprototype>
@@ -251,7 +251,7 @@ this prolog
>setReportData</function
></funcdef
> <paramdef
->const QIODevice &amp;<parameter
+>const TQIODevice &amp;<parameter
>data io-enhet</parameter
></paramdef
> </funcprototype>
@@ -259,9 +259,9 @@ this prolog
>Hämtar rapportdata från filen <replaceable
>data io-enhet</replaceable
>. I/O-enheten kan vara vilken klass som helst härledd från klassen <replaceable
->QIODevice</replaceable
+>TQIODevice</replaceable
>. För att till exempel direkt hämta poster från databasen, skapa en härledd klass från <classname
->QIODevice</classname
+>TQIODevice</classname
> och definiera om alla nödvändiga funktioner. </funcsynopsisinfo>
</funcsynopsis>
@@ -272,7 +272,7 @@ this prolog
>setReportTemplate</function
></funcdef
> <paramdef
->const QString &amp;<parameter
+>const TQString &amp;<parameter
>mallfilnamn</parameter
></paramdef
> </funcprototype>
@@ -289,7 +289,7 @@ this prolog
>setReportTemplate</function
></funcdef
> <paramdef
->const QIODevice &amp;<parameter
+>const TQIODevice &amp;<parameter
>mall io-enhet</parameter
></paramdef
> </funcprototype>
@@ -297,8 +297,8 @@ this prolog
>Hämtar rapportmall från filen <replaceable
>mall io-enhet</replaceable
>. I/O-enheten kan vara vilken klass som helst härledd från klassen <classname
->QIODevice</classname
->. För att till exempel direkt hämta en rapportmall från nätverket eller en databas, skapa en härledd klass från QIODevice och definiera om alla nödvändiga funktioner. </funcsynopsisinfo>
+>TQIODevice</classname
+>. För att till exempel direkt hämta en rapportmall från nätverket eller en databas, skapa en härledd klass från TQIODevice och definiera om alla nödvändiga funktioner. </funcsynopsisinfo>
</funcsynopsis>
</sect1>
@@ -407,14 +407,14 @@ public:
KugarWidgetPlugin ();
QStringList keys () const;
- QWidget *create (const QString &amp; classname, QWidget * parent =
+ TQWidget *create (const TQString &amp; classname, TQWidget * parent =
0, const char *name = 0);
- QString group (const QString &amp;) const;
- QIconSet iconSet (const QString &amp;) const;
- QString includeFile (const QString &amp;) const;
- QString toolTip (const QString &amp;) const;
- QString whatsThis (const QString &amp;) const;
- bool isContainer (const QString &amp;) const;
+ TQString group (const TQString &amp;) const;
+ QIconSet iconSet (const TQString &amp;) const;
+ TQString includeFile (const TQString &amp;) const;
+ TQString toolTip (const TQString &amp;) const;
+ TQString whatsThis (const TQString &amp;) const;
+ bool isContainer (const TQString &amp;) const;
};
</programlisting>
</sect3>
@@ -592,7 +592,7 @@ QStringList KugarWidgetPlugin::keys () const
return list;
}
-QWidget* KugarWidgetPlugin::create (const QString &amp; key, QWidget * parent,
+TQWidget* KugarWidgetPlugin::create (const TQString &amp; key, TQWidget * parent,
const char *name)
{
if (key == "KReportViewer")
@@ -600,40 +600,40 @@ QWidget* KugarWidgetPlugin::create (const QString &amp; key, QWidget * parent,
return 0;
}
-QString KugarWidgetPlugin::group (const QString &amp; feature) const
+TQString KugarWidgetPlugin::group (const TQString &amp; feature) const
{
if (feature == "KReportViewer")
return "Display";
- return QString::null;
+ return TQString::null;
}
-QIconSet KugarWidgetPlugin::iconSet (const QString &amp;) const
+QIconSet KugarWidgetPlugin::iconSet (const TQString &amp;) const
{
return QIconSet (QPixmap (kugar_pixmap));
}
-QString KugarWidgetPlugin::includeFile (const QString &amp; feature) const
+TQString KugarWidgetPlugin::includeFile (const TQString &amp; feature) const
{
if (feature == "KReportViewer")
return "kugar.h";
- return QString::null;
+ return TQString::null;
}
-QString KugarWidgetPlugin::toolTip (const QString &amp; feature) const
+TQString KugarWidgetPlugin::toolTip (const TQString &amp; feature) const
{
if (feature == "KReportViewer")
return "Kugar report viewer widget";
- return QString::null;
+ return TQString::null;
}
-QString KugarWidgetPlugin::whatsThis (const QString &amp; feature) const
+TQString KugarWidgetPlugin::whatsThis (const TQString &amp; feature) const
{
if (feature == "KReportViewer")
return "A widget to view xml reports";
- return QString::null;
+ return TQString::null;
}
-bool KugarWidgetPlugin::isContainer (const QString &amp;) const
+bool KugarWidgetPlugin::isContainer (const TQString &amp;) const
{
return FALSE;
}