summaryrefslogtreecommitdiffstats
path: root/sip/qtsql/qsqlpropertymap.sip
diff options
context:
space:
mode:
Diffstat (limited to 'sip/qtsql/qsqlpropertymap.sip')
-rw-r--r--sip/qtsql/qsqlpropertymap.sip36
1 files changed, 18 insertions, 18 deletions
diff --git a/sip/qtsql/qsqlpropertymap.sip b/sip/qtsql/qsqlpropertymap.sip
index c2f8ae8..169be86 100644
--- a/sip/qtsql/qsqlpropertymap.sip
+++ b/sip/qtsql/qsqlpropertymap.sip
@@ -1,63 +1,63 @@
-// This is the SIP interface definition for QSqlPropertyMap.
+// This is the SIP interface definition for TQSqlPropertyMap.
//
// Copyright (c) 2007
// Riverbank Computing Limited <[email protected]>
//
-// This file is part of PyQt.
+// This file is part of PyTQt.
//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
+// This copy of PyTQt is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the Free
// Software Foundation; either version 2, or (at your option) any later
// version.
//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
+// PyTQt is supplied in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
//
// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
+// PyTQt; see the file LICENSE. If not, write to the Free Software Foundation,
// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
%ExportedDoc
-<Sect2><Title>QSqlPropertyMap (Qt v3+)</Title>
+<Sect2><Title>TQSqlPropertyMap (TQt v3+)</Title>
<Para>
-<Literal>QSqlPropertyMap</Literal> is fully implemented. However, because PyQt
+<Literal>TQSqlPropertyMap</Literal> is fully implemented. However, because PyTQt
does not allow new properties to be defined, it is not possible to implement
custom editor widgets in Python and add them to a property map. These will
simply be ignored.
</Para>
<Para>
-This problem may be addressed in a future release of PyQt.
+This problem may be addressed in a future release of PyTQt.
</Para>
</Sect2>
%End
-%If (Qt_3_0_0 -)
+%If (TQt_3_0_0 -)
-class QSqlPropertyMap
+class TQSqlPropertyMap
{
%TypeHeaderCode
#include <qsqlpropertymap.h>
%End
public:
- QSqlPropertyMap();
+ TQSqlPropertyMap();
- QVariant property(QWidget *);
- virtual void setProperty(QWidget *,const QVariant &);
+ TQVariant property(TQWidget *);
+ virtual void setProperty(TQWidget *,const TQVariant &);
- void insert(const QString &,const QString &);
- void remove(const QString &);
+ void insert(const TQString &,const TQString &);
+ void remove(const TQString &);
- static QSqlPropertyMap *defaultMap();
- static void installDefaultMap(QSqlPropertyMap * /Transfer/);
+ static TQSqlPropertyMap *defaultMap();
+ static void installDefaultMap(TQSqlPropertyMap * /Transfer/);
private:
- QSqlPropertyMap(const QSqlPropertyMap &);
+ TQSqlPropertyMap(const TQSqlPropertyMap &);
};
%End