summaryrefslogtreecommitdiffstats
path: root/doc/porting3.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
commit252a2ec8b0f0f9cf20c947737087b24a8185b588 (patch)
treeb48be8863db3bc1c223ac270a258b5c1124cb0e3 /doc/porting3.doc
parent87d29563e3ccdeb7fea0197e262e667ef323ff9c (diff)
downloadtqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.tar.gz
tqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.zip
Rename IO and network class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/porting3.doc')
-rw-r--r--doc/porting3.doc20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/porting3.doc b/doc/porting3.doc
index 9a6dc359..2f33d6c5 100644
--- a/doc/porting3.doc
+++ b/doc/porting3.doc
@@ -210,10 +210,10 @@ All these functions have been removed in TQt 3.x:
\i QPalette::setNormal(). Use TQPalette::setActive() instead.
\i QPointArray::quadBezier()
\i TQRegExp::find()
-\i QSignal::block(bool b)
-\i QSignal::isBlocked() const
-\i QSignal::parameter() const. Use TQSignal::value() instead.
-\i QSignal::setParameter(int value). Use TQSignal::setValue() instead.
+\i TQSignal::block(bool b)
+\i TQSignal::isBlocked() const
+\i TQSignal::parameter() const. Use TQSignal::value() instead.
+\i TQSignal::setParameter(int value). Use TQSignal::setValue() instead.
\i QSpinBox::downButton()
\i QSpinBox::upButton()
\i TQString::basicDirection()
@@ -265,8 +265,8 @@ new code.
\i QComboBox::setAutoResize( bool )
\i TQDate::dayName( int weekday )
\i TQDate::monthName( int month )
-\i QDir::encodedEntryList( const TQString \& nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const
-\i QDir::encodedEntryList( int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const
+\i TQDir::encodedEntryList( const TQString \& nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const
+\i TQDir::encodedEntryList( int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const
\i QDockWindow::isHorizontalStretchable() const
\i QDockWindow::isVerticalStretchable() const
\i QDockWindow::setHorizontalStretchable( bool b )
@@ -344,7 +344,7 @@ new code.
\i TQWidget::setFont( const QFont \& f, bool )
\i TQWidget::setPalette( const QPalette \& p, bool )
\i QWizard::setFinish( TQWidget *, bool )
-\i TQXmlInputSource::TQXmlInputSource( QFile \& file )
+\i TQXmlInputSource::TQXmlInputSource( TQFile \& file )
\i TQXmlInputSource::TQXmlInputSource( TQTextStream \& stream )
\i TQXmlReader::parse( const TQXmlInputSource \& input )
\endlist
@@ -408,11 +408,11 @@ TQDate::shortDayName() and have been made static (as they should had
been in the first place). The old names are still provided for source
compatibility.
-\section1 QFileDialog
+\section1 TQFileDialog
If the mode was not set explicitly, and the user entered a
non-existent file, the dialog would accept this. In TQt 3.x, you must
-set the mode, e.g. setMode(QFileDialog::AnyFile), to get the same
+set the mode, e.g. setMode(TQFileDialog::AnyFile), to get the same
behavior.
\section1 QFont
@@ -760,7 +760,7 @@ TQXmlContentHandler::setDocumentLocator() function.
\section1 Asynchronous I/O Classes
-QASyncIO, QDataSink, QDataSource, QIODeviceSource and QDataPump were
+QASyncIO, TQDataSink, TQDataSource, TQIODeviceSource and TQDataPump were
used internally in previous versions of Qt, but are not used anymore.
They are now obsolete.