]> git.llucax.com Git - software/bife/bife++.git/blobdiff - translate/translate.h
- Normalized Fallback constructor to be the same of Widget (or Container).
[software/bife/bife++.git] / translate / translate.h
index cf0da382d822a6df2b4c30eb288e9271b2a6c0bb..89a740cc117f158de4317ac385aa21162e968d04 100644 (file)
@@ -24,44 +24,38 @@ namespace bife {
         public:
             /**
              * Constructor.
-             *
-             * @param name    Name of the widget.
              */
-            Translate(const string&);
+            Translate(void);
 
             /**
              * Constructor.
              *
-             * @param name    Name of the widget.
              * @param attrs   Widget attributes.
              */
-            Translate(const string&, const Hash&);
+            Translate(const Hash&);
 
             /**
              * Constructor.
              *
-             * @param name    Name of the widget.
              * @param attrs   Widget attributes.
              * @param content Content of the widget.
              */
-            Translate(const string&, const Hash&, Widget*);
+            Translate(const Hash&, Widget*);
 
             /**
              * Constructor.
              *
-             * @param name    Name of the widget.
              * @param content Content of the widget.
              */
-            Translate(const string&, Widget*);
+            //Translate(Widget*);
 
             /**
              * Constructor.
              *
-             * @param name    Name of the widget.
              * @param content Content of the widget.
              * @param attrs   Widget attributes.
              */
-            Translate(const string&, Widget*, const Hash&);
+            Translate(Widget*, const Hash&);
 
             /**
              * Destructor.