summaryrefslogtreecommitdiffstats
path: root/src/registrytool.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2011-10-27 04:55:51 +0000
committerJon A. Cruz <jon@joncruz.org>2011-10-27 04:55:51 +0000
commit2633767789e4264b13ef91a684accf734fb4e94f (patch)
tree0f6bc8d758b8e4bcf01d2dd393166907906c156e /src/registrytool.cpp
parentCleanup pass on documentation that was dumping garbage into doxygen output. (diff)
downloadinkscape-2633767789e4264b13ef91a684accf734fb4e94f.tar.gz
inkscape-2633767789e4264b13ef91a684accf734fb4e94f.zip
Fixing more broken and split doc comments.
(bzr r10697)
Diffstat (limited to 'src/registrytool.cpp')
-rw-r--r--src/registrytool.cpp18
1 files changed, 2 insertions, 16 deletions
diff --git a/src/registrytool.cpp b/src/registrytool.cpp
index af41c3eaf..d2cec0080 100644
--- a/src/registrytool.cpp
+++ b/src/registrytool.cpp
@@ -1,10 +1,6 @@
-/**
+/*
* Inkscape Registry Tool
*
- * This simple tool is intended for allowing Inkscape to append subdirectories
- * to its path. This will allow extensions and other files to be accesses
- * without explicit user intervention.
- *
* Authors:
* Bob Jamison
*
@@ -52,9 +48,6 @@ KeyTableEntry keyTable[] =
};
-/**
- * Set the string value of a key/name registry entry
- */
bool RegistryTool::setStringValue(const Glib::ustring &keyNameArg,
const Glib::ustring &valueName,
const Glib::ustring &value)
@@ -108,9 +101,6 @@ bool RegistryTool::setStringValue(const Glib::ustring &keyNameArg,
-/**
- * Get the full path, directory, and base file name of this running executable
- */
bool RegistryTool::getExeInfo(Glib::ustring &fullPath,
Glib::ustring &path,
Glib::ustring &exeName)
@@ -137,10 +127,6 @@ bool RegistryTool::getExeInfo(Glib::ustring &fullPath,
-/**
- * Append our subdirectories to the Application Path for this
- * application
- */
bool RegistryTool::setPathInfo()
{
Glib::ustring fullPath;
@@ -181,7 +167,7 @@ bool RegistryTool::setPathInfo()
#ifdef TESTREG
-/**
+/*
* Compile this file with
* g++ -DTESTREG registrytool.cpp -o registrytool
* to run these tests.