diff options
| author | Ralf Stephan <ralf@ark.in-berlin.de> | 2006-02-13 19:14:47 +0000 |
|---|---|---|
| committer | rwst <rwst@users.sourceforge.net> | 2006-02-13 19:14:47 +0000 |
| commit | dce08c184686d4cef1f1961926cce339429f5aba (patch) | |
| tree | 58a437a00423768c653d1a90ddb5cf65bfe71efd /src/extension/extension.cpp | |
| parent | closed up denial-of-service attack vector (ironically located in an (diff) | |
| download | inkscape-dce08c184686d4cef1f1961926cce339429f5aba.tar.gz inkscape-dce08c184686d4cef1f1961926cce339429f5aba.zip | |
bulk whitespace removal patch #1198588 by gigaclon
(bzr r134)
Diffstat (limited to 'src/extension/extension.cpp')
| -rw-r--r-- | src/extension/extension.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/extension/extension.cpp b/src/extension/extension.cpp index 4aac7780a..42b220576 100644 --- a/src/extension/extension.cpp +++ b/src/extension/extension.cpp @@ -313,7 +313,7 @@ Extension::get_name (void) \return None \brief This function diactivates the extension (which makes it unusable, but not deleted) - + This function is used to removed an extension from functioning, but not delete it completely. It sets the state to \c STATE_DEACTIVATED to mark to the world that it has been deactivated. It also removes @@ -377,7 +377,7 @@ Parameter * param_shared (const gchar * name, GSList * list) { Parameter * output; - + if (name == NULL) { throw Extension::param_not_exist(); } @@ -407,7 +407,7 @@ const gchar * Extension::get_param_string (const gchar * name, const Inkscape::XML::Document * doc) { Parameter * param; - + param = param_shared(name, parameters); return param->get_string(doc); } @@ -426,7 +426,7 @@ bool Extension::get_param_bool (const gchar * name, const Inkscape::XML::Document * doc) { Parameter * param; - + param = param_shared(name, parameters); return param->get_bool(doc); } @@ -445,7 +445,7 @@ int Extension::get_param_int (const gchar * name, const Inkscape::XML::Document * doc) { Parameter * param; - + param = param_shared(name, parameters); return param->get_int(doc); } @@ -553,7 +553,7 @@ Extension::error_file_open (void) error_file.open(filename); if (!error_file.is_open()) { g_warning(_("Could not create extension error log file '%s'"), - filename); + filename); } g_free(filename); g_free(ext_error_file); |
