diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-29 12:43:23 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-29 12:43:23 +0900 | 
| commit | fef846914f8db6dc117e206ef913d519bf6bb33e (patch) | |
| tree | d6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/man/man3/tqlabel.3qt | |
| parent | 8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff) | |
| download | tqt-fef84691.tar.gz tqt-fef84691.zip | |
Rename basic widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 | 
