From c1d028f225491065ab11912a9c9bc2ad3f320930 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Wed, 30 May 2007 12:56:41 +0000 Subject: [PATCH] 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 --- src/gtk/aboutdlg.cpp | 5 +++++ 1 file changed, 5 insertions(+) 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 // ============================================================================ -- 2.50.0