From 979f5621d7cb2015eef214b0258dac1d6cd4c742 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 11 Jul 2023 13:32:20 +0900 Subject: Drop compatibility code for TQLineEdit Signed-off-by: Michele Calgaro --- doc/html/porting.html | 37 ++++++++++++++++++++++++------------- 1 file changed, 24 insertions(+), 13 deletions(-) (limited to 'doc/html/porting.html') diff --git a/doc/html/porting.html b/doc/html/porting.html index 50f7fb040..44202c104 100644 --- a/doc/html/porting.html +++ b/doc/html/porting.html @@ -64,7 +64,9 @@ you're a registered licensee.
  • Namespace -
  • Removed Functions +
  • Removed Properties + +
  • Removed Functions
  • Obsoleted Functions @@ -228,12 +230,26 @@ have been changed:
  • _WS_*_ becomes Q_WS_*
  • _CC_*_ becomes Q_CC_* +

    Removed Properties +

    +

    All these properties have been removed in TQt 3.x: +

      +
    • TQLineEdit::hasMarkedText. Use TQLineEdit::hasSelectedText instead. +
    • TQLineEdit::markedText. Use TQLineEdit::selectedText instead. +
    • TQToolButton::offIconSet. Use TQToolButton::iconSet instead. +
    • TQToolButton::onIconSet. Use TQToolButton::iconSet instead. +

    Removed Functions

    -

    All these functions have been removed in TQt 3.x: +

    All these functions have been removed in TQt 3.x:

    • TQFont::charSet()
    • TQFont::setCharSet() +
    • TQLineEdit::cursorLeft(bool mark, int steps = 1). Use TQLineEdit::cursorBackward instead. +
    • TQLineEdit::cursorRight(bool mark, int steps = 1). Use TQLineEdit::cursorForward instead. +
    • TQLineEdit::hasMarkedText() const. Use TQLineEdit::hasSelectedText instead. +
    • TQLineEdit::markedText() const. Use TQLineEdit::selectedText instead. +
    • TQLineEdit::repaintArea(int, int). Use TQLineEdit::update instead.
    • TQMenuBar::setActItem()
    • TQMenuBar::setWindowsAltMode()
    • TQObject::initMetaObject() @@ -246,6 +262,12 @@ have been changed:
    • TQString::visual()
    • TQStyle::set...() functions
    • TQStyle::drawArrow() +
    • TQToolButton::iconSet(bool on) const +
    • TQToolButton::offIconSet() const +
    • TQToolButton::onIconSet() const +
    • TQToolButton::setIconSet(const & set, bool on) +
    • TQToolButton::setOffIconSet(const TQIconSet &) +
    • TQToolButton::setOnIconSet(const TQIconSet &)
    • TQWidget::setFontPropagation()
    • TQWidget::setPalettePropagation()
    @@ -305,11 +327,6 @@ new code.
  • TQFontDatabase::weight( const TQString & family, const TQString & style, const TQString & ) const
  • TQLabel::autoResize() const
  • TQLabel::setAutoResize( bool enable ) -
  • TQLineEdit::cursorLeft( bool mark, int steps = 1 ) -
  • TQLineEdit::cursorRight( bool mark, int steps = 1 ) -
  • TQLineEdit::hasMarkedText() const -
  • TQLineEdit::markedText() const -
  • TQLineEdit::repaintArea( int, int )
  • TQListBox::cellHeight( int i ) const
  • TQListBox::cellHeight() const
  • TQListBox::cellWidth() const @@ -357,12 +374,6 @@ new code.
  • TQTabDialog::setTabEnabled( const char *name, bool enable )
  • TQTextStream::TQTextStream( TQString & str, int filemode )
  • TQToolBar::TQToolBar( const TQString & label, TQMainWindow *, ToolBarDock = DockTop, bool newLine = FALSE, const char *name = 0 ) -
  • TQToolButton::iconSet( bool on ) const -
  • TQToolButton::offIconSet() const -
  • TQToolButton::onIconSet() const -
  • TQToolButton::setIconSet( const TQIconSet & set, bool on ) -
  • TQToolButton::setOffIconSet( const TQIconSet & ) -
  • TQToolButton::setOnIconSet( const TQIconSet & )
  • TQToolTip::enabled()
  • TQToolTip::setEnabled( bool enable )
  • TQTranslator::find( const char *context, const char *sourceText, const char *comment = 0 ) const -- cgit v1.2.1