aboutsummaryrefslogtreecommitdiffstats
path: root/src/exiv2wrapper_python.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/exiv2wrapper_python.cpp')
-rw-r--r--src/exiv2wrapper_python.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exiv2wrapper_python.cpp b/src/exiv2wrapper_python.cpp
index 54967a5..88c1353 100644
--- a/src/exiv2wrapper_python.cpp
+++ b/src/exiv2wrapper_python.cpp
@@ -78,7 +78,7 @@ BOOST_PYTHON_MODULE(libexiv2python)
class_<ExifTag>("ExifTag", init<std::string>())
- .def("_setValue", &ExifTag::setValue)
+ .def("_setRawValue", &ExifTag::setRawValue)
.def("_getKey", &ExifTag::getKey)
.def("_getType", &ExifTag::getType)
@@ -88,7 +88,7 @@ BOOST_PYTHON_MODULE(libexiv2python)
.def("_getDescription", &ExifTag::getDescription)
.def("_getSectionName", &ExifTag::getSectionName)
.def("_getSectionDescription", &ExifTag::getSectionDescription)
- .def("_getValue", &ExifTag::getValue)
+ .def("_getRawValue", &ExifTag::getRawValue)
;
class_<IptcTag>("IptcTag", init<std::string>())