diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2006-05-31 22:16:32 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2006-05-31 22:16:32 +0000 |
| commit | cfcecdf579c8ca829ba0bfe376b3cf178444778d (patch) | |
| tree | c1cf222cb2486ccc22f3a93add9843b09365b983 /src/registrytool.h | |
| parent | Fix spelling of Bezier. (diff) | |
| download | inkscape-cfcecdf579c8ca829ba0bfe376b3cf178444778d.tar.gz inkscape-cfcecdf579c8ca829ba0bfe376b3cf178444778d.zip | |
Convert from std::string to glib::ustring to fit into rest of inkscape
(bzr r1104)
Diffstat (limited to 'src/registrytool.h')
| -rw-r--r-- | src/registrytool.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/registrytool.h b/src/registrytool.h index 9aa644189..e98f2df38 100644 --- a/src/registrytool.h +++ b/src/registrytool.h @@ -28,6 +28,7 @@ */ #include <string> +#include <glibmm.h> class RegistryTool { @@ -39,13 +40,13 @@ public: virtual ~RegistryTool() {} - bool setStringValue(const std::string &key, - const std::string &valueName, - const std::string &value); + bool setStringValue(const Glib::ustring &key, + const Glib::ustring &valueName, + const Glib::ustring &value); - bool getExeInfo(std::string &fullPath, - std::string &path, - std::string &exeName); + bool getExeInfo(Glib::ustring &fullPath, + Glib::ustring &path, + Glib::ustring &exeName); bool setPathInfo(); |
