aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtGui/qpixmap_conversion.h
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-02-18 17:48:59 -0200
committerHugo Lima <hugo.lima@openbossa.org>2010-02-18 18:00:49 -0200
commit3599b75f885983aa87e8ef8baf0fb2c65ef175cb (patch)
tree502649d75b4e6ebb956c7da2ba47c775166c8d79 /PySide/QtGui/qpixmap_conversion.h
parent20077974e87ea27bb4710aaa89edd0bf97ba60ce (diff)
Put all custom converters inside Shiboken namespace.
Diffstat (limited to 'PySide/QtGui/qpixmap_conversion.h')
-rw-r--r--PySide/QtGui/qpixmap_conversion.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/PySide/QtGui/qpixmap_conversion.h b/PySide/QtGui/qpixmap_conversion.h
index 18e3ce910..411592dd2 100644
--- a/PySide/QtGui/qpixmap_conversion.h
+++ b/PySide/QtGui/qpixmap_conversion.h
@@ -1,3 +1,4 @@
+namespace Shiboken {
inline bool Converter< QPixmap >::isConvertible(PyObject* pyobj)
{
bool isVariant = SbkQVariant_Check(pyobj);
@@ -25,3 +26,4 @@ inline QPixmap Converter< QPixmap >::toCpp(PyObject* pyobj)
return *SbkQPixmap_cptr(pyobj);
}
+}