From: Václav Slavík Date: Wed, 30 May 2007 12:56:41 +0000 (+0000) Subject: put GtkArray into anonymous namespace, the name is too generic to risk conflicts X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c1d028f225491065ab11912a9c9bc2ad3f320930 put GtkArray into anonymous namespace, the name is too generic to risk conflicts git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46245 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/aboutdlg.cpp b/src/gtk/aboutdlg.cpp index 683e47f67f..10c843cd4a 100644 --- a/src/gtk/aboutdlg.cpp +++ b/src/gtk/aboutdlg.cpp @@ -34,6 +34,9 @@ // GtkArray: temporary array of GTK strings // ---------------------------------------------------------------------------- +namespace +{ + class GtkArray { public: @@ -76,6 +79,8 @@ private: DECLARE_NO_COPY_CLASS(GtkArray) }; +} // anonymous namespace + // ============================================================================ // implementation // ============================================================================