diff options
Diffstat (limited to 'src/widgets')
-rw-r--r-- | src/widgets/qlistbox.cpp | 6 | ||||
-rw-r--r-- | src/widgets/qmenubar.cpp | 4 | ||||
-rw-r--r-- | src/widgets/qmenudata.cpp | 4 | ||||
-rw-r--r-- | src/widgets/qscrollview.cpp | 4 | ||||
-rw-r--r-- | src/widgets/qtooltip.cpp | 8 |
5 files changed, 13 insertions, 13 deletions
diff --git a/src/widgets/qlistbox.cpp b/src/widgets/qlistbox.cpp index d767db495..314855271 100644 --- a/src/widgets/qlistbox.cpp +++ b/src/widgets/qlistbox.cpp @@ -892,7 +892,7 @@ int TQListBoxPixmap::rtti() const New items can be inserted using insertItem(), insertStrList() or insertStringList(). inSort() is obsolete because this method is - tquite inefficient. It's preferable to insert the items normally + quite inefficient. It's preferable to insert the items normally and call sort() afterwards, or to insert a sorted TQStringList(). By default, vertical and horizontal scroll bars are added and @@ -3963,7 +3963,7 @@ TQRect TQListBox::itemRect( TQListBoxItem *item ) const /*! \obsolete - Using this method is tquite inefficient. We suggest to use insertItem() + Using this method is quite inefficient. We suggest to use insertItem() for inserting and sort() afterwards. Inserts \a lbi at its sorted position in the list box and returns the @@ -3995,7 +3995,7 @@ int TQListBox::inSort( const TQListBoxItem * lbi ) /*! \obsolete \overload - Using this method is tquite inefficient. We suggest to use insertItem() + Using this method is quite inefficient. We suggest to use insertItem() for inserting and sort() afterwards. Inserts a new item of \a text at its sorted position in the list box and diff --git a/src/widgets/qmenubar.cpp b/src/widgets/qmenubar.cpp index e0a7c431b..3d7082ba3 100644 --- a/src/widgets/qmenubar.cpp +++ b/src/widgets/qmenubar.cpp @@ -168,10 +168,10 @@ extern int qt_xfocusout_grab_counter; // defined in qapplication_x11.cpp \row \i config, options, setup, settings or preferences \i Application Menu | Preferences \i If this entry is not found the Settings item will be disabled - \row \i tquit or exit + \row \i quit or exit \i Application Menu | Quit <application name> \i If this entry is not found a default Quit item will be - created to call TQApplication::tquit() + created to call TQApplication::quit() \endtable \link menu-example.html menu/menu.cpp\endlink is an example of diff --git a/src/widgets/qmenudata.cpp b/src/widgets/qmenudata.cpp index 98aa064d1..34fedde74 100644 --- a/src/widgets/qmenudata.cpp +++ b/src/widgets/qmenudata.cpp @@ -351,7 +351,7 @@ void TQMenuData::removePopup( TQPopupMenu *popup ) pulldown menus into a menu bar. The number of insert functions may look confusing, but they are - actually tquite simple to use. + actually quite simple to use. This default version inserts a menu item with the text \a text, the accelerator key \a accel, an id and an optional index and @@ -905,7 +905,7 @@ TQKeySequence TQMenuData::accel( int id ) const fileMenu->insertItem( "Open Document", 67 ); // add "Open" item fileMenu->setAccel( CTRL + Key_O, 67 ); // Ctrl+O to open fileMenu->insertItem( "Quit", 69 ); // add "Quit" item - fileMenu->setAccel( CTRL + ALT + Key_Delete, 69 ); // add Alt+Del to tquit + fileMenu->setAccel( CTRL + ALT + Key_Delete, 69 ); // add Alt+Del to quit mainMenu->insertItem( "File", fileMenu ); // add the file menu \endcode diff --git a/src/widgets/qscrollview.cpp b/src/widgets/qscrollview.cpp index 44b6347a9..8c661d1ee 100644 --- a/src/widgets/qscrollview.cpp +++ b/src/widgets/qscrollview.cpp @@ -356,7 +356,7 @@ void TQScrollViewData::viewportResized( int w, int h ) The TQScrollView is a large canvas - potentially larger than the coordinate system normally supported by the underlying window - system. This is important because it is tquite easy to go beyond + system. This is important because it is quite easy to go beyond these limitations (e.g. many web pages are more than 32000 pixels high). Additionally, the TQScrollView can have TQWidgets positioned on it that scroll around with the drawn content. These sub-widgets @@ -2610,7 +2610,7 @@ void TQScrollView::enableClipper(bool y) or a scrolling background if \a y is FALSE. By default, the background is scrolling. - Be aware that this mode is tquite slow, as a full repaint of the + Be aware that this mode is quite slow, as a full repaint of the visible area has to be triggered on every contents move. \sa hasStaticBackground() diff --git a/src/widgets/qtooltip.cpp b/src/widgets/qtooltip.cpp index ec2df8a15..f121a38ea 100644 --- a/src/widgets/qtooltip.cpp +++ b/src/widgets/qtooltip.cpp @@ -686,15 +686,15 @@ void TQTipManager::setWakeUpDelay ( int i ) TQToolTip::add() with the widget and tip as arguments: \code - TQToolTip::add( tquitButton, "Leave the application" ); + TQToolTip::add( quitButton, "Leave the application" ); \endcode This is the simplest and most common use of TQToolTip. The tip - will be deleted automatically when \e tquitButton is deleted, but + will be deleted automatically when \e quitButton is deleted, but you can remove it yourself, too: \code - TQToolTip::remove( tquitButton ); + TQToolTip::remove( quitButton ); \endcode You can also display another text (typically in a \link TQStatusBar @@ -703,7 +703,7 @@ void TQTipManager::setWakeUpDelay ( int i ) connected to the appropriate status bar: \code - TQToolTip::add( tquitButton, "Leave the application", grp, + TQToolTip::add( quitButton, "Leave the application", grp, "Leave the application, prompting to save if necessary" ); TQToolTip::add( closeButton, "Close this window", grp, "Close this window, prompting to save if necessary" ); |