aboutsummaryrefslogtreecommitdiffstats
path: root/src/exiv2wrapper_python.cpp
diff options
context:
space:
mode:
authorOlivier Tilloy <olivier@tilloy.net>2009-11-05 09:52:43 +0100
committerOlivier Tilloy <olivier@tilloy.net>2009-11-05 09:52:43 +0100
commit5ee4579755d346122b7eb818f6c5a30290e87be2 (patch)
treebf2c5ecc0bb7dc8c827e4c31820afac52c45f47d /src/exiv2wrapper_python.cpp
parenta40fa3744742d67b87bb5c04d0ad33a426d3f314 (diff)
downloadpyexiv2-5ee4579755d346122b7eb818f6c5a30290e87be2.tar.gz
Renamed ExifTag's _value to _raw_value.
Value and raw value setters.
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>())