aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/conversions.h
Commit message (Expand)AuthorAgeFilesLines
* Made SbkChar_Check macro safer with parenthesis.Marcelo Lira2012-03-081-5/+1
* String::convertible renamed to String::isConvertible.Hugo Parente Lima2012-03-081-1/+1
* Fixed char conversion to work with both python 3.x and 2.xRenato Filho2012-03-081-3/+29
* Updated char conversion for works with python3 unicodes.Renato Filho2012-03-081-4/+9
* Update string usage to new Shiboken::String API.Renato Filho2012-03-081-6/+11
* Fix converter of std::map.Hugo Parente Lima2012-03-081-1/+1
* Using Py_TYPE macro instead of direct access to ob_type to work with Python 2...Hugo Parente Lima2012-03-081-4/+0
* Added sbkpython.h to deal with conflicts and missing symbols between Python2...Hugo Parente Lima2012-03-081-1/+1
* Replaced all PyString_* by PyBytes_* as preparation for a Python 3.x port.Hugo Parente Lima2012-03-081-11/+11
* SbkNumber_Check now makes use of PyNumber_Check.Marcelo Lira2012-03-081-1/+3
* Fix bug#513 - "Hardcoded bool return type for operator overloads"Hugo Parente Lima2012-03-081-2/+3
* Remove SbkTypeInfo and CppObjectCopier structs, they aren't needed after the ...Hugo Parente Lima2012-03-081-36/+1
* Remove const version of Converters to avoid hidding generator bugs.Hugo Parente Lima2012-03-081-12/+0
* Namespace Shiboken::Wrapper renamed to Shiboken::Object.Hugo Parente Lima2012-03-081-8/+8
* namespace Shiboken::BaseType renamed to Shiboken::ObjectType.Hugo Parente Lima2012-03-081-6/+6
* Rename SbkBaseType back to SbkObjectType.Hugo Parente Lima2012-03-081-5/+5
* Created private pointer for Shiboken Meta Type.Renato Araujo Oliveira Filho2012-03-081-17/+13
* Fix the metaObject method written by the generator after the changed in libsh...Hugo Parente Lima2012-03-081-1/+3
* Changed signature of cppPointer to receive SbkObject* instead of PyObject*.Hugo Parente Lima2012-03-081-5/+5
* Remove macro Shiboken_TypeCheckHugo Parente Lima2012-03-081-3/+1
* SbkBaseWrapperType renamed to SbkObjectType.Hugo Parente Lima2012-03-081-6/+6
* SbkBaseWrapperType and some other functions used by Python C-API moved outsid...Hugo Parente Lima2012-03-081-1/+1
* setCppPointer and getCppPointer moved to namespace Shiboken::WrapperHugo Parente Lima2012-03-081-5/+5
* Removed macros SbkBaseWrapper_instanceDict and SbkBaseWrapper_setInstanceDictHugo Parente Lima2012-03-081-2/+2
* Moved Shiboken::SbkBaseWrapper outside Shiboken namespace and added a d-point...Hugo Parente Lima2012-03-081-2/+2
* Create enum python types on the fly, avoiding generation of structs and dupli...Hugo Parente Lima2012-03-081-3/+3
* pyenum.{h|cpp} moved to sbkenum.{h|cpp}Hugo Parente Lima2012-03-081-1/+1
* Simplifies the generated code removing the use of std::auto_ptr.Hugo Parente Lima2012-03-081-3/+3
* Removed unnecessary cast on copy function.renatofilho2012-03-081-1/+1
* Removes Converter<char>, because the missuse of it causes memory leak .Hugo Parente Lima2012-03-081-9/+0
* Implement generation support to target conversion.renatofilho2012-03-081-0/+4
* Change the license boiler plates of all LGPL files removing the special excep...Hugo Parente Lima2010-09-091-20/+8
* Fix bug#316 - "QAbstractItemModel.createIndex is broken"Hugo Parente Lima2010-09-011-3/+5
* Fix the type resolver algorithm.Hugo Parente Lima2010-08-301-1/+5
* Modified the void* converter to deal with all pointers as coming from Python.Marcelo Lira2010-08-031-14/+5
* Create a new copy from object when convert from PyObject to const ref.Renato Filho2010-07-271-1/+12
* Fix char* converterRenato Filho2010-07-271-1/+25
* Fix segfault when dealing with converter(void *).Luciano Wolf2010-07-141-1/+1
* Fixed ref leak on list cpp conversion.Renato Filho2010-07-091-1/+1
* Fix Converter<bool>::toCpp, to correctly convert number to boolean values.Hugo Parente Lima2010-07-061-1/+1
* Fix bug#256 - "PySide does not support signals with containers."Hugo Parente Lima2010-06-291-0/+3
* Fixed checkType of int and floating point converters.Hugo Parente Lima2010-06-101-2/+2
* Added Converter<T>::checkType.Hugo Parente Lima2010-06-091-0/+32
* Only convert None to a null pointer when there aren't conversions defined for...Hugo Parente Lima2010-04-061-3/+4
* Add support for multiple inheritance involving more than one C++ object.Hugo Lima2010-03-301-6/+7
* SbkBaseWrapper_New gets a non-const void pointer instead of a const one.Hugo Lima2010-03-301-2/+2
* Fixes Converter<void*>::toPython method.Marcelo Lira2010-03-231-0/+2
* Converter<T*>::toCpp specialization now converts None to NULL pointer first.Marcelo Lira2010-03-221-1/+3
* Speed up conversions of lists from python to c++ if the list classHugo Lima2010-03-181-0/+3
* Added ObjectTypeReferenceConverter, so object-types can be used as references.Hugo Lima2010-03-181-0/+13