diff options
Diffstat (limited to 'doc/man/man3/tqlabel.3qt')
| -rw-r--r-- | doc/man/man3/tqlabel.3qt | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/doc/man/man3/tqlabel.3qt b/doc/man/man3/tqlabel.3qt index c3e5cc25c..f0a10914a 100644 --- a/doc/man/man3/tqlabel.3qt +++ b/doc/man/man3/tqlabel.3qt @@ -165,13 +165,13 @@ A TQLabel is often used as a label for an interactive widget. For this use TQLab  .PP  .nf  .br -    QLineEdit* phoneEdit = new QLineEdit( this, "phoneEdit" ); +    TQLineEdit* phoneEdit = new TQLineEdit( this, "phoneEdit" );  .br      TQLabel* phoneLabel = new TQLabel( phoneEdit, "&Phone:", this, "phoneLabel" );  .br  .fi  .PP -In this example, keyboard focus is transferred to the label's buddy (the QLineEdit) when the user presses Alt+P. You can also use the setBuddy() function to accomplish the same thing. +In this example, keyboard focus is transferred to the label's buddy (the TQLineEdit) when the user presses Alt+P. You can also use the setBuddy() function to accomplish the same thing.  .PP  .ce 1  .B "[Image Omitted]" @@ -180,7 +180,7 @@ In this example, keyboard focus is transferred to the label's buddy (the QLineEd  .ce 1  .B "[Image Omitted]"  .PP -See also QLineEdit, TQTextEdit, TQPixmap, TQMovie, GUI Design Handbook: Label, Basic Widgets, and Text Related Classes. +See also TQLineEdit, TQTextEdit, TQPixmap, TQMovie, GUI Design Handbook: Label, Basic Widgets, and Text Related Classes.  .SH MEMBER FUNCTION DOCUMENTATION  .SH "TQLabel::TQLabel ( TQWidget * parent, const char * name = 0, WFlags f = 0 )"  Constructs an empty label. @@ -259,13 +259,13 @@ In a dialog, you might create two data entry widgets and a label for each, and s  .PP  .nf  .br -    QLineEdit *nameEd  = new QLineEdit( this ); +    TQLineEdit *nameEd  = new TQLineEdit( this );  .br      TQLabel    *nameLb  = new TQLabel( "&Name:", this );  .br      nameLb->setBuddy( nameEd );  .br -    QLineEdit *phoneEd = new QLineEdit( this ); +    TQLineEdit *phoneEd = new TQLineEdit( this );  .br      TQLabel    *phoneLb = new TQLabel( "&Phone:", this );  .br | 
