diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-23 12:42:20 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-23 12:42:20 +0900 |
commit | b35e0845dc9b3c8b9a5e52a682c769f383933fae (patch) | |
tree | e4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/man/man3/tqlibrary.3qt | |
parent | 1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff) | |
download | tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqlibrary.3qt')
-rw-r--r-- | doc/man/man3/tqlibrary.3qt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/man/man3/tqlibrary.3qt b/doc/man/man3/tqlibrary.3qt index b871f805e..eac7629de 100644 --- a/doc/man/man3/tqlibrary.3qt +++ b/doc/man/man3/tqlibrary.3qt @@ -16,7 +16,7 @@ All the functions in this class are reentrant when TQt is built with thread supp .SS "Public Members" .in +1c .ti -1c -.BI "\fBQLibrary\fR ( const QString & filename )" +.BI "\fBQLibrary\fR ( const TQString & filename )" .br .ti -1c .BI "virtual \fB~QLibrary\fR ()" @@ -40,13 +40,13 @@ All the functions in this class are reentrant when TQt is built with thread supp .BI "void \fBsetAutoUnload\fR ( bool enabled )" .br .ti -1c -.BI "QString \fBlibrary\fR () const" +.BI "TQString \fBlibrary\fR () const" .br .in -1c .SS "Static Public Members" .in +1c .ti -1c -.BI "void * \fBresolve\fR ( const QString & filename, const char * symb )" +.BI "void * \fBresolve\fR ( const TQString & filename, const char * symb )" .br .in -1c .SH DESCRIPTION @@ -81,7 +81,7 @@ The following code snippet loads a library, resolves the symbol" mysymbol", and .PP See also Plugins. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QLibrary::QLibrary ( const QString & filename )" +.SH "QLibrary::QLibrary ( const TQString & filename )" Creates a QLibrary object for the shared library \fIfilename\fR. The library will be unloaded in the destructor. .PP Note that \fIfilename\fR does not need to include the (platform specific) file extension, so calling @@ -124,7 +124,7 @@ See also setAutoUnload(). Returns TRUE if the library is loaded; otherwise returns FALSE. .PP See also unload(). -.SH "QString QLibrary::library () const" +.SH "TQString QLibrary::library () const" Returns the filename of the shared library this QLibrary object handles, including the platform specific file extension. .PP For example: @@ -133,7 +133,7 @@ For example: .br QLibrary lib( "mylib" ); .br - QString str = lib.library(); + TQString str = lib.library(); .br .fi will set \fIstr\fR to "mylib.dll" on Windows, and "libmylib.so" on Linux. @@ -208,7 +208,7 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. .PP THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -.SH "void * QLibrary::resolve ( const QString & filename, const char * symb )\fC [static]\fR" +.SH "void * QLibrary::resolve ( const TQString & filename, const char * symb )\fC [static]\fR" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Loads the library \fIfilename\fR and returns the address of the exported symbol \fIsymb\fR. Note that like the constructor, \fIfilename\fR does not need to include the (platform specific) file extension. The library remains loaded until the process exits. |