aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-11-05 14:18:54 -0200
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:08:56 -0300
commit95d5b63552f804e7fc5b80428cabb34f57443c0b (patch)
tree5af3ee7b91ed54071302e5ae43fba85d029d5c62 /libshiboken
parent809d948aa99e52495111ad871cbad3d1ae955395 (diff)
pyenum.{h|cpp} moved to sbkenum.{h|cpp}
Diffstat (limited to 'libshiboken')
-rw-r--r--libshiboken/CMakeLists.txt4
-rw-r--r--libshiboken/basewrapper.cpp2
-rw-r--r--libshiboken/conversions.h2
-rw-r--r--libshiboken/sbkenum.cpp (renamed from libshiboken/pyenum.cpp)4
-rw-r--r--libshiboken/sbkenum.h (renamed from libshiboken/pyenum.h)6
-rw-r--r--libshiboken/shiboken.h2
6 files changed, 10 insertions, 10 deletions
diff --git a/libshiboken/CMakeLists.txt b/libshiboken/CMakeLists.txt
index f21681f55..a329eec01 100644
--- a/libshiboken/CMakeLists.txt
+++ b/libshiboken/CMakeLists.txt
@@ -26,7 +26,7 @@ set(libshiboken_SRC
basewrapper.cpp
gilstate.cpp
helper.cpp
-pyenum.cpp
+sbkenum.cpp
bindingmanager.cpp
threadstatesaver.cpp
typeresolver.cpp
@@ -49,7 +49,7 @@ install(FILES
conversions.h
gilstate.h
helper.h
- pyenum.h
+ sbkenum.h
python25compat.h
sbkdbg.h
shiboken.h
diff --git a/libshiboken/basewrapper.cpp b/libshiboken/basewrapper.cpp
index 4983f6784..ae5b6ddab 100644
--- a/libshiboken/basewrapper.cpp
+++ b/libshiboken/basewrapper.cpp
@@ -22,7 +22,7 @@
#include "basewrapper.h"
#include "basewrapper_p.h"
-#include "pyenum.h"
+#include "sbkenum.h"
#include <cstddef>
#include <algorithm>
#include "autodecref.h"
diff --git a/libshiboken/conversions.h b/libshiboken/conversions.h
index 475902ead..d4059b565 100644
--- a/libshiboken/conversions.h
+++ b/libshiboken/conversions.h
@@ -28,7 +28,7 @@
#include <memory>
#include <typeinfo>
-#include "pyenum.h"
+#include "sbkenum.h"
#include "basewrapper.h"
#include "bindingmanager.h"
#include "sbkdbg.h"
diff --git a/libshiboken/pyenum.cpp b/libshiboken/sbkenum.cpp
index 6295c9150..f71a74769 100644
--- a/libshiboken/pyenum.cpp
+++ b/libshiboken/sbkenum.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the Shiboken Python Bindings Generator project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
*
* Contact: PySide team <contact@pyside.org>
*
@@ -20,7 +20,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include "pyenum.h"
+#include "sbkenum.h"
namespace Shiboken
{
diff --git a/libshiboken/pyenum.h b/libshiboken/sbkenum.h
index 9c9026527..447997e75 100644
--- a/libshiboken/pyenum.h
+++ b/libshiboken/sbkenum.h
@@ -1,7 +1,7 @@
/*
* This file is part of the Shiboken Python Bindings Generator project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
*
* Contact: PySide team <contact@pyside.org>
*
@@ -20,8 +20,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef SBK_PYENUM_H
-#define SBK_PYENUM_H
+#ifndef SBKENUM_H
+#define SBKENUM_H
#include <Python.h>
#include "shibokenmacros.h"
diff --git a/libshiboken/shiboken.h b/libshiboken/shiboken.h
index 83c27b2c8..6a2df306c 100644
--- a/libshiboken/shiboken.h
+++ b/libshiboken/shiboken.h
@@ -31,7 +31,7 @@
#include "gilstate.h"
#include "threadstatesaver.h"
#include "helper.h"
-#include "pyenum.h"
+#include "sbkenum.h"
#include "shibokenmacros.h"
#include "typeresolver.h"