]> git.saurik.com Git - wxWidgets.git/commitdiff
CVS tags cleaning (with other minor cleaning).
authorWłodzimierz Skiba <abx@abx.art.pl>
Mon, 16 Oct 2006 09:30:01 +0000 (09:30 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Mon, 16 Oct 2006 09:30:01 +0000 (09:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42046 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

26 files changed:
contrib/src/gizmos/multicell.cpp
include/wx/bmpcbox.h
include/wx/cocoa/NSPanel.h
include/wx/cocoa/NSWindow.h
include/wx/cocoa/ObjcAssociate.h
include/wx/cocoa/ObjcPose.h
include/wx/cocoa/bmpbuttn.h
include/wx/cocoa/dcscreen.h
include/wx/cocoa/frame.h
include/wx/cocoa/radiobut.h
include/wx/cocoa/statbmp.h
include/wx/cocoa/statbox.h
include/wx/cocoa/statline.h
include/wx/cocoa/textctrl.h
include/wx/generic/bmpcbox.h
include/wx/mac/carbon/private/print.h
include/wx/mac/carbon/uma.h
include/wx/mac/classic/uma.h
include/wx/xrc/xh_bmpcbox.h
src/cocoa/NSPanel.mm
src/cocoa/NSWindow.mm
src/cocoa/dialog.mm
src/cocoa/frame.mm
src/cocoa/main.cpp
src/generic/bmpcboxg.cpp
src/xrc/xh_bmpcbox.cpp

index 05221dbe97bf77d53b2f57da3b0f0399c428c092..b9351e00de518cb8a59594200c01a8b823e18f84 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Jonathan Bayer
 // Modified by:
 // Created:
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) Jonathan Bayer
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -651,4 +651,3 @@ void wxMultiCellCanvas :: CalculateConstraints()
 }
 
 /*** End of File ***/
-
index 83b69a20c0fb8366d7002e1a81b7967a6b2fd6fb..2de65ac579b672e7009ec7d68913c8a8382c99b3 100644 (file)
@@ -5,7 +5,7 @@
 // Modified by:
 // Created:     Aug-31-2006
 // Copyright:   (c) Jaakko Salli
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
index b107c54d93cfaf57c1b10f11d1f980c6243c48a7..043267a5fdada5b55a1f5807295e11b4b8663324 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/16
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
index cc62cb2ad10ca161934ec9bd6ee88d0d2e5a984e..4b16e5f7f061b0099f93498f480b9392f10d63cb 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/16
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
index 04d87562517c90c09b3cd7b5a91b79eaebbe1e49..3ba2f5aa86548bde02d39f8a8359ec564c3830c9 100644 (file)
@@ -2,9 +2,9 @@
 // Name:        wx/cocoa/ObjcAssociate.h
 // Purpose:     Associates an Objective-C class with a C++ class
 // Author:      David Elliott
-// Modified by: 
+// Modified by:
 // Created:     2002/12/03
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2002 David Elliott <dfe@cox.net>
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -76,4 +76,3 @@ void wxClass::Set##ObjcClass(WX_##ObjcClass cocoaObjcClass) \
 }
 
 #endif // __WX_COCOA_OBJC_ASSOCIATE_H__
-
index 6bfdf45f4b8657c3c54a5093ac5ad19e75d2394c..fc430946727a71de0d51319d294b7c2cd9a39bcd 100644 (file)
@@ -2,9 +2,9 @@
 // Name:        wx/cocoa/ObjcPose.h
 // Purpose:     Macros for initializing poseAs, among other things
 // Author:      David Elliott
-// Modified by: 
+// Modified by:
 // Created:     2002/12/03
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2002 David Elliott <dfe@cox.net>
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -22,31 +22,31 @@ Objective-C Poser class initialization
 class wxPoseAsInitializer
 {
 public:
-       wxPoseAsInitializer()
-       : m_next(sm_first)
-       {
-               sm_first = this;
-       }
-       virtual ~wxPoseAsInitializer()
-       {
-               sm_first = m_next;
-       }
-       static void InitializePosers()
-       {
-               while(sm_first)
-               {
-                       delete sm_first;
-               }
-       };
+    wxPoseAsInitializer()
+    : m_next(sm_first)
+    {
+        sm_first = this;
+    }
+    virtual ~wxPoseAsInitializer()
+    {
+        sm_first = m_next;
+    }
+    static void InitializePosers()
+    {
+        while(sm_first)
+        {
+            delete sm_first;
+        }
+    };
 protected:
-       wxPoseAsInitializer *m_next;
-       static wxPoseAsInitializer *sm_first;
+    wxPoseAsInitializer *m_next;
+    static wxPoseAsInitializer *sm_first;
 };
 
 class wxDummyForPoseAsInitializer
 {
 public:
-       wxDummyForPoseAsInitializer(void*) {}
+    wxDummyForPoseAsInitializer(void*) {}
 };
 
 #define WX_IMPLEMENT_POSER(poser) \
@@ -65,4 +65,3 @@ wxDummyForPoseAsInitializer wxDummyPoseAsInitializerFor##poser(new wxPoseAsIniti
 #endif // __OBJC__
 
 #endif // __WX_COCOA_PRIVATE_POSER_H__
-
index 7df20950eae85a5467f9da88e9d9b669043616e7..b26b75a15e08ba18c6c43fa99417149e88d2d6f7 100644 (file)
@@ -4,9 +4,9 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/16
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef __WX_COCOA_BMPBUTTN_H__
index 5b67bb8eca6b33d826a6197685e11471ab6641d5..8c330c5b6f37c76a86ff979822bc6227bb17cd53 100644 (file)
@@ -4,9 +4,9 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/16
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef __WX_COCOA_DCSCREEN_H__
index 971e872e47056746b3255c99a91dce134e701ce9..c7f886ade56fa8ffb6da7552532826489dd4ca75 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/16
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -15,7 +15,7 @@
 class WXDLLEXPORT wxMenuBar;
 class WXDLLEXPORT wxStatusBar;
 
-class WXDLLEXPORT wxFrame: public wxFrameBase 
+class WXDLLEXPORT wxFrame: public wxFrameBase
 {
     DECLARE_EVENT_TABLE()
     DECLARE_DYNAMIC_CLASS(wxFrame)
@@ -95,7 +95,7 @@ public:
 #if wxUSE_TOOLBAR
     // create main toolbar bycalling OnCreateToolBar()
     virtual wxToolBar* CreateToolBar(long style = -1,
-                                     wxWindowID winid = -1,
+                                     wxWindowID winid = wxID_ANY,
                                      const wxString& name = wxToolBarNameStr);
     // sets the main tool bar
     virtual void SetToolBar(wxToolBar *toolbar);
index 5f4019e9caedeef0483f2163b9c3d384598304a0..ccd502b474b1439ad9e0c63bdbbd8fbe38e3bb2f 100644 (file)
@@ -4,9 +4,9 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/18
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef __WX_COCOA_RADIOBUT_H__
index 31cb7b143de2361de8948e981a79f6af420e5c22..df5866edcf288fce40a2cfae58f89d8bba110a8f 100644 (file)
@@ -4,9 +4,9 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/16
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef __WX_COCOA_STATBMP_H__
index 8764385c1e92751c85d96a3acf5dca4bdc957977..e6aab49b45eca2a85c579e5a2a0c49fbc180e752 100644 (file)
@@ -4,9 +4,9 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/18
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef __WX_COCOA_STATBOX_H__
index 9c69a65ea8a6ed1e113a5f0a63fb826c91c693f5..c470309216c6a870ee44fdbe4c4971372f423f17 100644 (file)
@@ -4,9 +4,9 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/18
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef __WX_COCOA_STATLINE_H__
index 79d49c74de8e310ef1cc99be85cd633aa1cfd245..4adacb081e1126f04a024d47918a28645aeb2b58 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/16
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
index e1c963d4f1c4ec8aa09b4cde20403d35651a32d9..58f53627de4f6a8c031e9da637af74f36e8bf76c 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Jaakko Salli
 // Modified by:
 // Created:     Aug-30-2006
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) Jaakko Salli
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
index 2fd53ff8b8d3af32d31d34a6a9085f1c1202a1d9..6e7e3ead4509035909acd465a4451db37fb879e9 100644 (file)
@@ -1,10 +1,10 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        print.h
+// Name:        wx/mac/carbon/private/print.h
 // Purpose:     private implementation for printing on MacOS
 // Author:      Stefan Csomor
 // Modified by:
 // Created:     03/02/99
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
index d51ab20ed2a1df4abfa50da1d5ba1bb948a1183b..6fc10b61203de3c6aafc21612c840a9a8cdca747 100644 (file)
@@ -1,10 +1,10 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        uma.h
+// Name:        wx/mac/carbon/uma.h
 // Purpose:     Universal MacOS API
 // Author:      Stefan Csomor
 // Modified by:
 // Created:     03/02/99
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
index c862427f62eced2c0f6d845c64b74317d12230d2..7eba95d42e2ecaafd564315227694e4b9fd50871 100644 (file)
@@ -1,10 +1,10 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        uma.h
+// Name:        wx/mac/classic/uma.h
 // Purpose:     Universal MacOS API
 // Author:      Stefan Csomor
 // Modified by:
 // Created:     03/02/99
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
index 5b5e0624ef404b73c637d8f9cf27ebb4f51e5476..fe99d117e23463e6c80fb91028226178bca42abd 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     XML resource handler for wxBitmapComboBox
 // Author:      Jaakko Salli
 // Created:     Sep-10-2006
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2006 Jaakko Salli
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
index 9dbb83c522bbda484e03c2d2e27bfaf6a3a057ca..30723dd0abcb349220dc2e71805f857402ed081e 100644 (file)
@@ -1,10 +1,10 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        cocoa/NSPanel.mm
+// Name:        src/cocoa/NSPanel.mm
 // Purpose:     wxCocoaNSPanel
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/16
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
 // Licence:     wxWidgets licence
 /////////////////////////////////////////////////////////////////////////////
@@ -30,4 +30,3 @@
 // globals
 // ----------------------------------------------------------------------------
 WX_IMPLEMENT_OBJC_INTERFACE_HASHMAP(NSPanel)
-
index ebb81b92b07337cd41527d3f6f7aa89f4d21f01e..792f701b1911049f545b70f11728d6e86d8de7b9 100644 (file)
@@ -1,10 +1,10 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        cocoa/NSWindow.mm
+// Name:        src/cocoa/NSWindow.mm
 // Purpose:     wxCocoaNSWindow
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/16
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
 // Licence:     wxWidgets licence
 /////////////////////////////////////////////////////////////////////////////
@@ -219,4 +219,3 @@ WX_IMPLEMENT_POSER(wxPoserNSWindow);
 }
 
 @end // implementation wxPoserNSWindow
-
index e51faffa372477de0862396629a881d655721a8c..f8d3faeafbb1ba137ed124987f90dc8b09c38aca 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2002/12/15
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   2002 David Elliott
 // Licence:     wxWidgets licence
 /////////////////////////////////////////////////////////////////////////////
@@ -169,4 +169,3 @@ void wxDialog::EndModal(int retCode)
     SetReturnCode(retCode);
     Show(false);
 }
-
index fd61328157e5a456ea021afff7df00947edc6fdf..4a3569d81e6dea670c1666c54f80d66d723166ba 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/16
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
 // Licence:     wxWidgets licence
 /////////////////////////////////////////////////////////////////////////////
index 31754e2de87e8379295510e319f05a19532e5263..b84c2a5a916ecc41d37294573fd702b2f5b572fa 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2002/11/11
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2002 David Elliott
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
index bac36de5a2bfadb3991381528a6cf19db1507a29..e74fabd3c1b95f0cd8f86eef3f919004641ec70a 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Jaakko Salli
 // Modified by:
 // Created:     Aug-31-2006
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2005 Jaakko Salli
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
index 9c6e5ff894596a76e8c1ddf616b2330a2dfa1cd7..6fc2840bd676c594eb7b44ebd60470afa450ee02 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     XRC resource for wxBitmapComboBox
 // Author:      Jaakko Salli
 // Created:     Sep-10-2006
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2006 Jaakko Salli
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////