diff options
Diffstat (limited to 'doc/man/man3/tqsessionmanager.3qt')
-rw-r--r-- | doc/man/man3/tqsessionmanager.3qt | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/man/man3/tqsessionmanager.3qt b/doc/man/man3/tqsessionmanager.3qt index 9304d41e8..79472a0e6 100644 --- a/doc/man/man3/tqsessionmanager.3qt +++ b/doc/man/man3/tqsessionmanager.3qt @@ -46,22 +46,22 @@ Inherits TQObject. .BI "RestartHint \fBrestartHint\fR () const" .br .ti -1c -.BI "void \fBsetRestartCommand\fR ( const QStringList & command )" +.BI "void \fBsetRestartCommand\fR ( const TQStringList & command )" .br .ti -1c -.BI "QStringList \fBrestartCommand\fR () const" +.BI "TQStringList \fBrestartCommand\fR () const" .br .ti -1c -.BI "void \fBsetDiscardCommand\fR ( const QStringList & )" +.BI "void \fBsetDiscardCommand\fR ( const TQStringList & )" .br .ti -1c -.BI "QStringList \fBdiscardCommand\fR () const" +.BI "TQStringList \fBdiscardCommand\fR () const" .br .ti -1c .BI "void \fBsetManagerProperty\fR ( const TQString & name, const TQString & value )" .br .ti -1c -.BI "void \fBsetManagerProperty\fR ( const TQString & name, const QStringList & value )" +.BI "void \fBsetManagerProperty\fR ( const TQString & name, const TQStringList & value )" .br .ti -1c .BI "bool \fBisPhase2\fR () const" @@ -173,16 +173,16 @@ See also QApplication::commitData(), release(), and cancel(). Tells the session manager to cancel the shutdown process. Applications should not call this function without first asking the user. .PP See also allowsInteraction() and allowsErrorInteraction(). -.SH "QStringList QSessionManager::discardCommand () const" +.SH "TQStringList QSessionManager::discardCommand () const" Returns the currently set discard command. .PP Note that if you want to iterate over the list, you should iterate over a copy, e.g. .PP .nf .br - QStringList list = mySession.discardCommand(); + TQStringList list = mySession.discardCommand(); .br - QStringList::Iterator it = list.begin(); + TQStringList::Iterator it = list.begin(); .br while( it != list.end() ) { .br @@ -213,16 +213,16 @@ The two phases are useful for applications such as the X11 window manager that n Note that if another application has requested a second phase it may get called before, simultaneously with, or after your application's second phase. .PP See also isPhase2(). -.SH "QStringList QSessionManager::restartCommand () const" +.SH "TQStringList QSessionManager::restartCommand () const" Returns the currently set restart command. .PP Note that if you want to iterate over the list, you should iterate over a copy, e.g. .PP .nf .br - QStringList list = mySession.restartCommand(); + TQStringList list = mySession.restartCommand(); .br - QStringList::Iterator it = list.begin(); + TQStringList::Iterator it = list.begin(); .br while( it != list.end() ) { .br @@ -253,9 +253,9 @@ If the application has been restored from an earlier session, this key is the sa The session key changes with every call of commitData() or saveState(). .PP See also sessionId() and QApplication::sessionKey(). -.SH "void QSessionManager::setDiscardCommand ( const QStringList & )" +.SH "void QSessionManager::setDiscardCommand ( const TQStringList & )" See also discardCommand() and setRestartCommand(). -.SH "void QSessionManager::setManagerProperty ( const TQString & name, const QStringList & value )" +.SH "void QSessionManager::setManagerProperty ( const TQString & name, const TQStringList & value )" Low-level write access to the application's identification and state record are kept in the session manager. .PP The property called \fIname\fR has its value set to the string list \fIvalue\fR. @@ -265,7 +265,7 @@ This is an overloaded member function, provided for convenience. It behaves esse Low-level write access to the application's identification and state records are kept in the session manager. .PP The property called \fIname\fR has its value set to the string \fIvalue\fR. -.SH "void QSessionManager::setRestartCommand ( const QStringList & command )" +.SH "void QSessionManager::setRestartCommand ( const TQStringList & command )" If the session manager is capable of restoring sessions it will execute \fIcommand\fR in order to restore the application. The command defaults to .PP .nf |