namespace comments in dw/*

123 <[email protected]>
Newsgroups gmane.comp.web.dillo.devel
Message-ID <[email protected]>
Copied comments are almost in every source file.

_______________________________________________
Dillo-dev mailing list
[email protected]
http://lists.auriga.wearlab.de/cgi-bin/mailman/listinfo/dillo-dev
namespace.diff (text/plain, 7.2 KB)
diff -r e77b384a9d4d dw/core.hh
--- a/dw/core.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/core.hh	Sun May 27 19:04:16 2012 +0400
@@ -31,10 +31,8 @@
 class ResourceFactory;
 
 } // namespace ui
-
-
+} // namespace core
 } // namespace dw
-} // namespace core
 
 #include "../lout/object.hh"
 #include "../lout/container.hh"
diff -r e77b384a9d4d dw/events.hh
--- a/dw/events.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/events.hh	Sun May 27 19:04:16 2012 +0400
@@ -77,7 +77,7 @@
    Widget *lastWidget, *currentWidget;
 };
 
+} // namespace core
 } // namespace dw
-} // namespace core
 
 #endif // __DW_EVENTS_HH__
diff -r e77b384a9d4d dw/findtext.cc
--- a/dw/findtext.cc	Sat May 26 13:58:42 2012 +0200
+++ b/dw/findtext.cc	Sun May 27 19:04:16 2012 +0400
@@ -288,5 +288,5 @@
    return ret;
 }
 
+} // namespace core
 } // namespace dw
-} // namespace core
diff -r e77b384a9d4d dw/findtext.hh
--- a/dw/findtext.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/findtext.hh	Sun May 27 19:04:16 2012 +0400
@@ -78,7 +78,7 @@
    void resetSearch ();
 };
 
+} // namespace core
 } // namespace dw
-} // namespace core
 
 #endif // __DW_FINDTEXT_STATE_H__
diff -r e77b384a9d4d dw/fltkcomplexbutton.hh
--- a/dw/fltkcomplexbutton.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/fltkcomplexbutton.hh	Sun May 27 19:04:16 2012 +0400
@@ -71,6 +71,3 @@
 } // namespace dw
 
 #endif
-
-//
-//
diff -r e77b384a9d4d dw/fltkcore.hh
--- a/dw/fltkcore.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/fltkcore.hh	Sun May 27 19:04:16 2012 +0400
@@ -11,7 +11,7 @@
 
 } // namespace ui
 } // namespace fltk
-} // namespace core
+} // namespace dw
 
 #include <FL/Fl_Widget.H>
 
diff -r e77b384a9d4d dw/fltkimgbuf.cc
--- a/dw/fltkimgbuf.cc	Sat May 26 13:58:42 2012 +0200
+++ b/dw/fltkimgbuf.cc	Sun May 27 19:04:16 2012 +0400
@@ -326,5 +326,5 @@
 
 }
 
+} // namespace fltk
 } // namespace dw
-} // namespace fltk
diff -r e77b384a9d4d dw/fltkimgbuf.hh
--- a/dw/fltkimgbuf.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/fltkimgbuf.hh	Sun May 27 19:04:16 2012 +0400
@@ -59,7 +59,7 @@
               int x, int y, int width, int height);
 };
 
+} // namespace fltk
 } // namespace dw
-} // namespace fltk
 
 #endif // __DW_FLTK_IMGBUF_HH__
diff -r e77b384a9d4d dw/fltkplatform.hh
--- a/dw/fltkplatform.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/fltkplatform.hh	Sun May 27 19:04:16 2012 +0400
@@ -15,12 +15,12 @@
 class FltkFont: public core::style::Font
 {
    class FontFamily: public lout::object::Object {
-         Fl_Font font[4];
-      public:
-         FontFamily (Fl_Font fontNormal, Fl_Font fontBold,
-                     Fl_Font fontItalic, Fl_Font fontBoldItalic);
-         void set (Fl_Font, int attrs);
-         Fl_Font get (int attrs);
+      Fl_Font font[4];
+   public:
+      FontFamily (Fl_Font fontNormal, Fl_Font fontBold,
+                  Fl_Font fontItalic, Fl_Font fontBoldItalic);
+      void set (Fl_Font, int attrs);
+      Fl_Font get (int attrs);
    };
 
    static FontFamily standardFontFamily;
diff -r e77b384a9d4d dw/imgbuf.hh
--- a/dw/imgbuf.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/imgbuf.hh	Sun May 27 19:04:16 2012 +0400
@@ -202,7 +202,7 @@
    virtual bool isReferred () = 0;
 };
 
+} // namespace core
 } // namespace dw
-} // namespace core
 
 #endif // __DW_IMGBUF_HH__
diff -r e77b384a9d4d dw/iterator.cc
--- a/dw/iterator.cc	Sat May 26 13:58:42 2012 +0200
+++ b/dw/iterator.cc	Sun May 27 19:04:16 2012 +0400
@@ -794,5 +794,5 @@
    }
 }
 
+} // namespace core
 } // namespace dw
-} // namespace core
diff -r e77b384a9d4d dw/iterator.hh
--- a/dw/iterator.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/iterator.hh	Sun May 27 19:04:16 2012 +0400
@@ -252,7 +252,7 @@
                             hpos, vpos); }
 };
 
+} // namespace core
 } // namespace dw
-} // namespace core
 
 #endif // __ITERATOR_HH__
diff -r e77b384a9d4d dw/layout.cc
--- a/dw/layout.cc	Sat May 26 13:58:42 2012 +0200
+++ b/dw/layout.cc	Sun May 27 19:04:16 2012 +0400
@@ -1018,6 +1018,5 @@
    setSizeHints ();
 }
 
+} // namespace core
 } // namespace dw
-} // namespace core
-
diff -r e77b384a9d4d dw/layout.hh
--- a/dw/layout.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/layout.hh	Sun May 27 19:04:16 2012 +0400
@@ -383,8 +383,7 @@
    inline style::Color* getBgColor () { return bgColor; }
 };
 
+} // namespace core
 } // namespace dw
-} // namespace core
 
 #endif // __DW_LAYOUT_HH__
-
diff -r e77b384a9d4d dw/platform.hh
--- a/dw/platform.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/platform.hh	Sun May 27 19:04:16 2012 +0400
@@ -164,7 +164,7 @@
    virtual ui::ResourceFactory *getResourceFactory () = 0;
 };
 
+} // namespace core
 } // namespace dw
-} // namespace core
 
 #endif // __DW_PLATFORM_HH__
diff -r e77b384a9d4d dw/selection.cc
--- a/dw/selection.cc	Sat May 26 13:58:42 2012 +0200
+++ b/dw/selection.cc	Sun May 27 19:04:16 2012 +0400
@@ -476,5 +476,5 @@
    }
 }
 
+} // namespace core
 } // namespace dw
-} // namespace core
diff -r e77b384a9d4d dw/selection.hh
--- a/dw/selection.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/selection.hh	Sun May 27 19:04:16 2012 +0400
@@ -235,7 +235,7 @@
                      int linkNo, MousePositionEvent *event);
 };
 
+} // namespace core
 } // namespace dw
-} // namespace core
 
 #endif // __DW_SELECTION_H__
diff -r e77b384a9d4d dw/style.cc
--- a/dw/style.cc	Sat May 26 13:58:42 2012 +0200
+++ b/dw/style.cc	Sun May 27 19:04:16 2012 +0400
@@ -952,5 +952,5 @@
 }
 
 } // namespace style
+} // namespace core
 } // namespace dw
-} // namespace core
diff -r e77b384a9d4d dw/style.hh
--- a/dw/style.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/style.hh	Sun May 27 19:04:16 2012 +0400
@@ -682,8 +682,8 @@
 void numtostr (int num, char *buf, int buflen, ListStyleType listStyleType);
 
 } // namespace style
+} // namespace core
 } // namespace dw
-} // namespace core
 
 #endif // __DW_STYLE_HH__
 
diff -r e77b384a9d4d dw/types.cc
--- a/dw/types.cc	Sat May 26 13:58:42 2012 +0200
+++ b/dw/types.cc	Sun May 27 19:04:16 2012 +0400
@@ -268,5 +268,5 @@
    rectangleList->append (r);
 }
 
+} // namespace core
 } // namespace dw
-} // namespace core
diff -r e77b384a9d4d dw/types.hh
--- a/dw/types.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/types.hh	Sun May 27 19:04:16 2012 +0400
@@ -211,7 +211,7 @@
    };
 };
 
+} // namespace core
 } // namespace dw
-} // namespace core
 
 #endif // __DW_TYPES_HH__
diff -r e77b384a9d4d dw/ui.cc
--- a/dw/ui.cc	Sat May 26 13:58:42 2012 +0200
+++ b/dw/ui.cc	Sun May 27 19:04:16 2012 +0400
@@ -381,5 +381,4 @@
 
 } // namespace ui
 } // namespace core
-} // namespace core
-
+} // namespace dw
diff -r e77b384a9d4d dw/view.hh
--- a/dw/view.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/view.hh	Sun May 27 19:04:16 2012 +0400
@@ -205,7 +205,7 @@
    virtual void mergeClippingView (View *clippingView) = 0;
 };
 
+} // namespace core
 } // namespace dw
-} // namespace core
 
 #endif // __DW_VIEW_HH__
diff -r e77b384a9d4d dw/widget.cc
--- a/dw/widget.cc	Sat May 26 13:58:42 2012 +0200
+++ b/dw/widget.cc	Sun May 27 19:04:16 2012 +0400
@@ -617,5 +617,5 @@
 
 
 
+} // namespace core
 } // namespace dw
-} // namespace core
diff -r e77b384a9d4d dw/widget.hh
--- a/dw/widget.hh	Sat May 26 13:58:42 2012 +0200
+++ b/dw/widget.hh	Sun May 27 19:04:16 2012 +0400
@@ -306,7 +306,7 @@
    virtual void removeChild (Widget *child);
 };
 
+} // namespace core
 } // namespace dw
-} // namespace core
 
 #endif // __DW_WIDGET_HH__
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.