diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-05-07 21:58:34 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-05-07 21:58:34 -0500 |
commit | c740211ffba3330d951f4c3ddefea8edf23a01cd (patch) | |
tree | 0a8b7641d3c5b576d18a2f7912c75fc600f494e2 /src/widgets | |
parent | 8a4eacb6185de3653f6ae401c352aef833a9e72a (diff) | |
download | tqt3-c740211ffba3330d951f4c3ddefea8edf23a01cd.tar.gz tqt3-c740211ffba3330d951f4c3ddefea8edf23a01cd.zip |
Automated update from Qt3
Diffstat (limited to 'src/widgets')
-rw-r--r-- | src/widgets/qlistview.cpp | 4 | ||||
-rw-r--r-- | src/widgets/qtextedit.cpp | 2 | ||||
-rw-r--r-- | src/widgets/qtoolbar.cpp | 4 | ||||
-rw-r--r-- | src/widgets/qtoolbutton.cpp | 4 | ||||
-rw-r--r-- | src/widgets/qtooltip.cpp | 6 |
5 files changed, 10 insertions, 10 deletions
diff --git a/src/widgets/qlistview.cpp b/src/widgets/qlistview.cpp index 111e6daf3..42aebfbe6 100644 --- a/src/widgets/qlistview.cpp +++ b/src/widgets/qlistview.cpp @@ -475,7 +475,7 @@ static TQString qEllipsisText( const TQString &org, const TQFontMetrics &fm, int Some subclasses call setExpandable(TRUE) even when they have no children, and populate themselves when setup() or setOpen(TRUE) is called. The \c dirview/dirview.cpp example program uses this - technique to start up tquickly: The files and subdirectories in a + technique to start up quickly: The files and subdirectories in a directory aren't inserted into the tree until they're actually needed. @@ -3093,7 +3093,7 @@ void TQListView::paintEmptyArea( TQPainter * p, const TQRect & rect ) /* Rebuilds the list of drawable TQListViewItems. This function is - const so that const functions can call it without retquiring + const so that const functions can call it without requiring d->drawables to be mutable. */ diff --git a/src/widgets/qtextedit.cpp b/src/widgets/qtextedit.cpp index 5bdf79249..9507d4f08 100644 --- a/src/widgets/qtextedit.cpp +++ b/src/widgets/qtextedit.cpp @@ -226,7 +226,7 @@ static bool block_set_alignment = FALSE; TQTextEdit is an advanced WYSIWYG viewer/editor supporting rich text formatting using HTML-style tags. It is optimized to handle - large documents and to respond tquickly to user input. + large documents and to respond quickly to user input. TQTextEdit has four modes of operation: \table diff --git a/src/widgets/qtoolbar.cpp b/src/widgets/qtoolbar.cpp index b465faffb..518d81c4a 100644 --- a/src/widgets/qtoolbar.cpp +++ b/src/widgets/qtoolbar.cpp @@ -219,7 +219,7 @@ void TQToolBarSeparator::paintEvent( TQPaintEvent * ) \mainclass A toolbar is a panel that contains a set of controls, usually - represented by small icons. It's purpose is to provide tquick + represented by small icons. It's purpose is to provide quick access to frequently used commands or options. Within a TQMainWindow the user can drag toolbars within and between the \link TQDockArea dock areas\endlink. Toolbars can also be dragged @@ -353,7 +353,7 @@ TQToolBar::TQToolBar( const TQString &label, TQMainWindow * mainWindow, Constructs an empty toolbar called \a name, with parent \a parent, in its \a parent's top dock area, without any label and without - retquiring a newline. + requiring a newline. */ TQToolBar::TQToolBar( TQMainWindow * parent, const char * name ) diff --git a/src/widgets/qtoolbutton.cpp b/src/widgets/qtoolbutton.cpp index 1912bebf1..cb10ffba6 100644 --- a/src/widgets/qtoolbutton.cpp +++ b/src/widgets/qtoolbutton.cpp @@ -77,13 +77,13 @@ public: /*! \class TQToolButton ntqtoolbutton.h - \brief The TQToolButton class provides a tquick-access button to + \brief The TQToolButton class provides a quick-access button to commands or options, usually used inside a TQToolBar. \ingroup basic \mainclass - A tool button is a special button that provides tquick-access to + A tool button is a special button that provides quick-access to specific commands or options. As opposed to a normal command button, a tool button usually doesn't show a text label, but shows an icon instead. Its classic usage is to select tools, for example diff --git a/src/widgets/qtooltip.cpp b/src/widgets/qtooltip.cpp index b6826a816..93091437f 100644 --- a/src/widgets/qtooltip.cpp +++ b/src/widgets/qtooltip.cpp @@ -370,7 +370,7 @@ void TQTipManager::removeFromGroup( TQToolTipGroup *g ) bool TQTipManager::eventFilter( TQObject *obj, TQEvent *e ) { // avoid dumping core in case of application madness, and return - // tquickly for some common but irrelevant events + // quickly for some common but irrelevant events if ( e->type() == TQEvent::WindowDeactivate && tqApp && !tqApp->activeWindow() && label && label->isVisible() ) @@ -671,10 +671,10 @@ void TQTipManager::setWakeUpDelay ( int i ) The mode is global, not particular to any one widget. TQToolTip switches from dormant to active mode when the user hovers - the mouse on a tip-etquipped region for a second or so and remains + the mouse on a tip-equipped region for a second or so and remains active until the user either clicks a mouse button, presses a key, lets the mouse hover for five seconds or moves the mouse outside - \e all tip-etquipped regions for at least a second. + \e all tip-equipped regions for at least a second. The TQToolTip class can be used in three different ways: \list 1 |