summaryrefslogtreecommitdiffstats
path: root/doc/html/qasyncio-h.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-09-13 13:18:58 +0900
committerMichele Calgaro <[email protected]>2023-09-14 10:35:25 +0900
commiteb42871e999672a8fad5793733c58be05928c8ea (patch)
tree57323eeb0fc8e0f0c30389b23d1aac0870ff3953 /doc/html/qasyncio-h.html
parent440483234fd5d8f29517d9c84b4227db80a90361 (diff)
downloadtqt3-eb42871e999672a8fad5793733c58be05928c8ea.tar.gz
tqt3-eb42871e999672a8fad5793733c58be05928c8ea.zip
Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 1ba13366a7a377d50b9e8df9044ce11d8209f98c)
Diffstat (limited to 'doc/html/qasyncio-h.html')
-rw-r--r--doc/html/qasyncio-h.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/qasyncio-h.html b/doc/html/qasyncio-h.html
index 845733896..dbe68585e 100644
--- a/doc/html/qasyncio-h.html
+++ b/doc/html/qasyncio-h.html
@@ -87,7 +87,7 @@ body { background: #ffffff; color: black; }
class TQIODevice;
-class Q_EXPORT TQAsyncIO {
+class TQ_EXPORT TQAsyncIO {
public:
virtual ~TQAsyncIO();
void connect(TQObject*, const char *member);
@@ -99,7 +99,7 @@ private:
TQSignal signal;
};
-class Q_EXPORT TQDataSink : public TQAsyncIO {
+class TQ_EXPORT TQDataSink : public TQAsyncIO {
public:
// Call this to know how much I can take.
virtual int readyToReceive()=0;
@@ -108,7 +108,7 @@ public:
void maybeReady();
};
-class Q_EXPORT TQDataSource : public TQAsyncIO {
+class TQ_EXPORT TQDataSource : public TQAsyncIO {
public:
virtual int readyToSend()=0; // returns -1 when never any more ready
virtual void sendTo(TQDataSink*, int count)=0;
@@ -119,7 +119,7 @@ public:
virtual void rewind();
};
-class Q_EXPORT TQIODeviceSource : public TQDataSource {
+class TQ_EXPORT TQIODeviceSource : public TQDataSource {
const int buf_size;
uchar *buffer;
TQIODevice* iod;
@@ -136,7 +136,7 @@ public:
void rewind();
};
-class Q_EXPORT TQDataPump : public TQObject {
+class TQ_EXPORT TQDataPump : public TQObject {
TQ_OBJECT
int interval;
TQTimer timer;