diff options
author | Slávek Banko <[email protected]> | 2014-02-02 18:19:30 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2014-02-02 18:20:26 +0100 |
commit | dab0c5cd15ce05ca022ec8229a8b3776607beaef (patch) | |
tree | e71481179cae766c4f2d3e93030dab3e39ad1052 /tools/designer/uic | |
parent | 2ee14b64a584bc2fbad51969d61cc27600c9bd10 (diff) | |
download | tqt3-dab0c5cd15ce05ca022ec8229a8b3776607beaef.tar.gz tqt3-dab0c5cd15ce05ca022ec8229a8b3776607beaef.zip |
Fix FTBFS due to hidden visibility
Diffstat (limited to 'tools/designer/uic')
-rw-r--r-- | tools/designer/uic/embed.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/designer/uic/embed.cpp b/tools/designer/uic/embed.cpp index bd9088ea9..b43233d16 100644 --- a/tools/designer/uic/embed.cpp +++ b/tools/designer/uic/embed.cpp @@ -283,7 +283,7 @@ void Uic::embed( TQTextStream& out, const char* project, const TQStringList& ima out << "static TQMimeSourceFactory* factory = 0;\n"; out << "\n"; - out << "void qInitImages_" << cProject << "()\n"; + out << "Q_EXPORT void qInitImages_" << cProject << "()\n"; out << "{\n"; out << " if ( !factory ) {\n"; out << "\tfactory = new MimeSourceFactory_" << cProject << ";\n"; |