mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-23 18:32:55 +00:00
drop Q_DECL_IMPORT macro
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
4687910c37
commit
24deb82098
2 changed files with 8 additions and 21 deletions
|
@ -1829,18 +1829,6 @@ int qrand()
|
||||||
|
|
||||||
This macro marks a symbol for shared library export (see
|
This macro marks a symbol for shared library export (see
|
||||||
\l{sharedlibrary.html}{Creating Shared Libraries}).
|
\l{sharedlibrary.html}{Creating Shared Libraries}).
|
||||||
|
|
||||||
\sa Q_DECL_IMPORT
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
|
||||||
\macro Q_DECL_IMPORT
|
|
||||||
\relates <QtGlobal>
|
|
||||||
|
|
||||||
This macro declares a symbol to be an import from a shared library (see
|
|
||||||
\l{sharedlibrary.html}{Creating Shared Libraries}).
|
|
||||||
|
|
||||||
\sa Q_DECL_EXPORT
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// the displayMode value is according to the what are blocks in the piecetable, not
|
// the displayMode value is according to the what are blocks in the piecetable, not
|
||||||
|
|
|
@ -191,54 +191,53 @@ typedef double qreal;
|
||||||
|
|
||||||
#define Q_DECL_EXPORT __attribute__((visibility("default")))
|
#define Q_DECL_EXPORT __attribute__((visibility("default")))
|
||||||
#define Q_DECL_HIDDEN __attribute__((visibility("hidden")))
|
#define Q_DECL_HIDDEN __attribute__((visibility("hidden")))
|
||||||
#define Q_DECL_IMPORT
|
|
||||||
|
|
||||||
#ifdef KtCore_EXPORTS
|
#ifdef KtCore_EXPORTS
|
||||||
# define Q_CORE_EXPORT Q_DECL_EXPORT
|
# define Q_CORE_EXPORT Q_DECL_EXPORT
|
||||||
#else
|
#else
|
||||||
# define Q_CORE_EXPORT Q_DECL_IMPORT
|
# define Q_CORE_EXPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef KtGui_EXPORTS
|
#ifdef KtGui_EXPORTS
|
||||||
# define Q_GUI_EXPORT Q_DECL_EXPORT
|
# define Q_GUI_EXPORT Q_DECL_EXPORT
|
||||||
#else
|
#else
|
||||||
# define Q_GUI_EXPORT Q_DECL_IMPORT
|
# define Q_GUI_EXPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef KtNetwork_EXPORTS
|
#ifdef KtNetwork_EXPORTS
|
||||||
# define Q_NETWORK_EXPORT Q_DECL_EXPORT
|
# define Q_NETWORK_EXPORT Q_DECL_EXPORT
|
||||||
#else
|
#else
|
||||||
# define Q_NETWORK_EXPORT Q_DECL_IMPORT
|
# define Q_NETWORK_EXPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef KtSvg_EXPORTS
|
#ifdef KtSvg_EXPORTS
|
||||||
# define Q_SVG_EXPORT Q_DECL_EXPORT
|
# define Q_SVG_EXPORT Q_DECL_EXPORT
|
||||||
#else
|
#else
|
||||||
# define Q_SVG_EXPORT Q_DECL_IMPORT
|
# define Q_SVG_EXPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef KtTest_EXPORTS
|
#ifdef KtTest_EXPORTS
|
||||||
# define Q_TEST_EXPORT Q_DECL_EXPORT
|
# define Q_TEST_EXPORT Q_DECL_EXPORT
|
||||||
#else
|
#else
|
||||||
# define Q_TEST_EXPORT Q_DECL_IMPORT
|
# define Q_TEST_EXPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef KtXml_EXPORTS
|
#ifdef KtXml_EXPORTS
|
||||||
# define Q_XML_EXPORT Q_DECL_EXPORT
|
# define Q_XML_EXPORT Q_DECL_EXPORT
|
||||||
#else
|
#else
|
||||||
# define Q_XML_EXPORT Q_DECL_IMPORT
|
# define Q_XML_EXPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef KtDBus_EXPORTS
|
#ifdef KtDBus_EXPORTS
|
||||||
# define Q_DBUS_EXPORT Q_DECL_EXPORT
|
# define Q_DBUS_EXPORT Q_DECL_EXPORT
|
||||||
#else
|
#else
|
||||||
# define Q_DBUS_EXPORT Q_DECL_IMPORT
|
# define Q_DBUS_EXPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef KtUiTools_EXPORTS
|
#ifdef KtUiTools_EXPORTS
|
||||||
# define Q_UITOOLS_EXPORT Q_DECL_EXPORT
|
# define Q_UITOOLS_EXPORT Q_DECL_EXPORT
|
||||||
#else
|
#else
|
||||||
# define Q_UITOOLS_EXPORT Q_DECL_IMPORT
|
# define Q_UITOOLS_EXPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define Q_CORE_EXPORT_INLINE Q_CORE_EXPORT inline
|
#define Q_CORE_EXPORT_INLINE Q_CORE_EXPORT inline
|
||||||
|
|
Loading…
Add table
Reference in a new issue