summaryrefslogtreecommitdiffstats
path: root/freebsd/dependencies/pinentry-tqt/files/patch-tqt_secqstring.h
blob: 0dd7973ba395bcf5fed825b09b2a1affbba73142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
--- tqt/secqstring.h.orig	2017-12-03 16:33:12 UTC
+++ tqt/secqstring.h
@@ -87,7 +87,7 @@ class SecTQCharRef;
 template <class T> class TQDeepCopy;
 #include <stdio.h>
 // internal
-struct Q_EXPORT SecTQStringData : public TQShared {
+struct TQ_EXPORT SecTQStringData : public TQShared {
     SecTQStringData() :
         TQShared(), unicode(0), len(0), maxl(0) { ref(); }
     SecTQStringData(TQChar *u, uint l, uint m) :
@@ -109,7 +109,7 @@ struct Q_EXPORT SecTQStringData : public TQShared {
 };
 
 
-class Q_EXPORT SecTQString
+class TQ_EXPORT SecTQString
 {
 public:
     SecTQString();                                  // make null string
@@ -191,7 +191,7 @@ class Q_EXPORT SecTQString (private)
     friend class TQDeepCopy<SecTQString>;
 };
 
-class Q_EXPORT SecTQCharRef {
+class TQ_EXPORT SecTQCharRef {
     friend class SecTQString;
     SecTQString& s;
     uint p;
@@ -249,7 +249,7 @@ class Q_EXPORT SecTQCharRef { (public)
 inline SecTQCharRef SecTQString::at( uint i ) { return SecTQCharRef(this,i); }
 inline SecTQCharRef SecTQString::operator[]( int i ) { return at((uint)i); }
 
-class Q_EXPORT SecTQConstString : private SecTQString {
+class TQ_EXPORT SecTQConstString : private SecTQString {
 public:
     SecTQConstString( const TQChar* unicode, uint length );
     ~SecTQConstString();
@@ -297,7 +297,7 @@ inline bool SecTQString::isEmpty() const
   SecTQString non-member operators
  *****************************************************************************/
 
-Q_EXPORT inline const SecTQString operator+( const SecTQString &s1, const SecTQString &s2 )
+TQ_EXPORT inline const SecTQString operator+( const SecTQString &s1, const SecTQString &s2 )
 {
     SecTQString tmp( s1 );
     tmp += s2;