summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Volz <andreas@optolix.mittelerde>2009-03-28 23:15:44 +0100
committerAndreas Volz <andreas@optolix.mittelerde>2009-03-28 23:15:44 +0100
commitb55f3cd36e23cf752b518bcb59004b1273bcd8c2 (patch)
treeed49bec5db69dff6628e7ac8caee61657bb32144
parentfbc0227d563ab48474b03a6043be176a0b95ed6f (diff)
downloaddbus-c++-b55f3cd36e23cf752b518bcb59004b1273bcd8c2.tar.gz
spaces
-rw-r--r--tools/generate_proxy.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/generate_proxy.cpp b/tools/generate_proxy.cpp
index 743ba30..f35ef2c 100644
--- a/tools/generate_proxy.cpp
+++ b/tools/generate_proxy.cpp
@@ -81,7 +81,7 @@ void generate_proxy(Xml::Document &doc, const char *filename)
// the code from class definiton up to opening of the constructor is generated...
body << "class " << ifaceclass << endl
- << " : public ::DBus::InterfaceProxy" << endl
+ << ": public ::DBus::InterfaceProxy" << endl
<< "{" << endl
<< "public:" << endl
<< endl
@@ -601,7 +601,6 @@ void generate_proxy(Xml::Document &doc, const char *filename)
body << tab << "}" << endl;
}
-
body << "};" << endl
<< endl;
@@ -613,8 +612,6 @@ void generate_proxy(Xml::Document &doc, const char *filename)
}
body << "#endif //" << cond_comp << endl;
-
- cerr << "writing " << filename << endl;
// remove all duplicates in the header include vector
vector<string>::const_iterator vec_end_it = unique (include_vector.begin (), include_vector.end ());