aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtCore
diff options
context:
space:
mode:
Diffstat (limited to 'PySide/QtCore')
-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)