Replace Qt with TQt

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/13/head
Michele Calgaro 3 months ago
parent 671d0469ad
commit 4d81ad9786
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -4,7 +4,7 @@
ktechlab
\- An IDE for microcontrollers and electronics
.SH SYNOPSIS
ktechlab [Qt\-options] [TDE\-options] [URL]
ktechlab [TQt\-options] [TDE\-options] [URL]
.SH DESCRIPTION
An IDE for microcontrollers and electronics
.SH OPTIONS
@ -18,8 +18,8 @@ Document to open.
.B \-\-help
Show help about options
.TP
.B \-\-help\-qt
Show Qt specific options
.B \-\-help\-tqt
Show TQt specific options
.TP
.B \-\-help\-tde
Show TDE specific options
@ -68,7 +68,7 @@ sets the application GUI style
.B \-\-geometry <geometry>
sets the client geometry of the main widget - see man X for the argument format
.SS
.SS Qt options:
.SS TQt options:
.TP
.B \-\-display <displayname>
Use the X-server display 'displayname'
@ -87,7 +87,7 @@ using the QApplication::ManyColor color
specification
.TP
.B \-\-nograb
tells Qt to never grab the mouse or the keyboard
tells TQt to never grab the mouse or the keyboard
.TP
.B \-\-dograb
running under a debugger can cause an implicit

@ -4,7 +4,7 @@
microbe
\- The Microbe Compiler
.SH SYNOPSIS
microbe [Qt\-options] [TDE\-options] [options] [Input URL] [Output URL]
microbe [TQt\-options] [TDE\-options] [options] [Input URL] [Output URL]
.SH DESCRIPTION
.SH OPTIONS
@ -29,8 +29,8 @@ Do not attempt optimization of generated instructions.
.B \-\-help
Show help about options
.TP
.B \-\-help\-qt
Show Qt specific options
.B \-\-help\-tqt
Show TQt specific options
.TP
.B \-\-help\-tde
Show TDE specific options
@ -79,7 +79,7 @@ sets the application GUI style
.B \-\-geometry <geometry>
sets the client geometry of the main widget - see man X for the argument format
.SS
.SS Qt options:
.SS TQt options:
.TP
.B \-\-display <displayname>
Use the X-server display 'displayname'
@ -98,7 +98,7 @@ using the QApplication::ManyColor color
specification
.TP
.B \-\-nograb
tells Qt to never grab the mouse or the keyboard
tells TQt to never grab the mouse or the keyboard
.TP
.B \-\-dograb
running under a debugger can cause an implicit

@ -104,7 +104,7 @@ TQPopupMenu * LogView::createPopupMenu( const TQPoint & pos )
menu->insertSeparator();
int id = menu->insertItem( i18n("Clear All"), this, TQ_SLOT(clear()) );
// "an empty textedit is always considered to have one paragraph" - qt documentation
// "an empty textedit is always considered to have one paragraph" - tqt documentation
// although this does not always seem to be the case, so I don't know...
menu->setItemEnabled( id, paragraphs() > 1 );

@ -668,7 +668,7 @@ void KTechlab::readProperties( TDEConfig *conf )
if ( KTLConfig::restoreDocumentsOnStartup() )
{
// If we have a lot of views open from last time, then opening them will take a long time.
// So we want to enter the qt event loop to finish drawing the window et al before adding the views.
// So we want to enter the tqt event loop to finish drawing the window et al before adding the views.
tqApp->processEvents();
const TQStringList groupList = conf->groupList();

Loading…
Cancel
Save