summaryrefslogtreecommitdiffstats
path: root/src/registrytool.h
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2006-05-31 22:16:32 +0000
committerishmal <ishmal@users.sourceforge.net>2006-05-31 22:16:32 +0000
commitcfcecdf579c8ca829ba0bfe376b3cf178444778d (patch)
treec1cf222cb2486ccc22f3a93add9843b09365b983 /src/registrytool.h
parentFix spelling of Bezier. (diff)
downloadinkscape-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.h13
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();