]> git.llucax.com Git - software/bife/bife++.git/blobdiff - translate/translate.cpp
- Normalized Fallback constructor to be the same of Widget (or Container).
[software/bife/bife++.git] / translate / translate.cpp
index b37453a75ab91bd1332463a3e210bc85d4ecbdea..32e93151f1622f96de744437d92dd84eeda35fb8 100644 (file)
@@ -12,35 +12,30 @@ using std::cerr;
 using std::endl;
 #endif
 
-Translate::Translate(const string& name): Fallback(name) {
+Translate::Translate(void) {
 #ifdef DEBUG
-    cerr << "In Translate::Translate(name = '" << name << "');" << endl;
+    cerr << "In Translate::Translate();" << endl;
 #endif
 }
 
-Translate::Translate(const string& name, const Hash& attrs): Fallback(name, attrs) {
+Translate::Translate(const Hash& attrs): Fallback(attrs) {
 #ifdef DEBUG
-    cerr << "In Translate::Translate(name = '" << name
-        << "', attrs = {" /* TODO << attrs */ << "});" << endl;
+    cerr << "In Translate::Translate(attrs = {" /* TODO << attrs */ << "});" << endl;
 #endif
 }
 
-Translate::Translate(const string& name, const Hash& attrs, Widget* content):
-        Fallback(name, attrs, content) {
+Translate::Translate(const Hash& attrs, Widget* content): Fallback(attrs, content) {
     // FIXME - this->content.push_back(content);
 #ifdef DEBUG
-    cerr << "In Translate::Translate(name = '" << name
-        << "', attrs = {" /* TODO << attrs */
+    cerr << "In Translate::Translate(attrs = {" /* TODO << attrs */
         << "}, content = {" /* TODO << content */ << "});" << endl;
 #endif
 }
 
-Translate::Translate(const string& name, Widget* content, const Hash& attrs):
-        Fallback(name, content, attrs) {
+Translate::Translate(Widget* content, const Hash& attrs): Fallback(content, attrs) {
     // FIXME - this->content.push_back(content);
 #ifdef DEBUG
-    cerr << "In Translate::Translate(name = '" << name
-        << "', content = {" /* TODO << content */
+    cerr << "In Translate::Translate(content = {" /* TODO << content */
         << "}, attrs = {" /* TODO << attrs */ << "});" << endl;
 #endif
 }