aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtCore/glue
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-02-18 16:11:09 -0200
committerHugo Lima <hugo.lima@openbossa.org>2010-02-18 18:00:49 -0200
commita6a1481df381d1e8595fd489796ac97f096e0a89 (patch)
tree5449d968283d9ed3220b9145bcc9830b6351db6f /PySide/QtCore/glue
parentaa2a2a57030dec2e8b73b017de5f157aae0fb5e5 (diff)
Do not export symbols, because nobody can link against QtCore.
Diffstat (limited to 'PySide/QtCore/glue')
-rw-r--r--PySide/QtCore/glue/qcoreapplication_impl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/PySide/QtCore/glue/qcoreapplication_impl.cpp b/PySide/QtCore/glue/qcoreapplication_impl.cpp
index e3210c7c4..d290d6e7e 100644
--- a/PySide/QtCore/glue/qcoreapplication_impl.cpp
+++ b/PySide/QtCore/glue/qcoreapplication_impl.cpp
@@ -1,11 +1,11 @@
// Global variables used to store argc and argv values
-SHIBOKEN_QTCORE_API int QCoreApplicationArgCount;
-SHIBOKEN_QTCORE_API char** QCoreApplicationArgValues;
+static int QCoreApplicationArgCount;
+static char** QCoreApplicationArgValues;
/**
* Called at QtCore module exit
*/
-SHIBOKEN_QTCORE_API void DeleteQCoreApplicationAtExit() {
+void DeleteQCoreApplicationAtExit() {
if (QCoreApplication::instance()) {
delete QCoreApplication::instance();
for (int i = 0; i < QCoreApplicationArgCount; ++i)