]> git.saurik.com Git - wxWidgets.git/commitdiff
fix some links
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sun, 24 Feb 2008 17:36:28 +0000 (17:36 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sun, 24 Feb 2008 17:36:28 +0000 (17:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52047 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/doxygen/overviews/docview.h
docs/doxygen/overviews/eventhandling.h
docs/doxygen/overviews/filesystem.h

index 1749361d4cf77871adae2789423bdcf0ba3b10bd..e7621744161e033eb583c85a234929d92caf0cc3 100644 (file)
@@ -67,7 +67,7 @@
  @li Limit the maximum number of open documents and the maximum number of undo commands.
 
  Note that to activate framework functionality, you need to use some or all of
- the wxWidgets @ref predefinedids_overview in your menus.
+ the wxWidgets @ref overview_docview_predefid in your menus.
 
  @beginWxPerlOnly
  The document/view framework is available in wxPerl. To use it,
index 3705232c0239e6a27fb4d4a0b9c9c26ae759c2cb..49bb870146d05658bae0cf77710de9767b538142 100644 (file)
@@ -17,9 +17,9 @@
  @li @ref overview_eventhandling_prog
  @li @ref overview_eventhandling_pluggable
  @li @ref overview_eventhandling_winid
+ @li @ref overview_eventhandling_custom
+
  <!-- @li @ref overview_eventhandling_macros -->
- @li @ref overview_eventhandling_pluggable
- @li @ref overview_eventhandling_winid
 
 
  <hr>
 
  @code
  BEGIN_EVENT_TABLE(MyFrame, wxFrame)
-   EVT_MENU    (wxID_EXIT, MyFrame::OnExit)
-   EVT_MENU    (DO_TEST,   MyFrame::DoTest)
-   EVT_SIZE    (           MyFrame::OnSize)
-   EVT_BUTTON  (BUTTON1,   MyFrame::OnButton1)
+   EVT_MENU(wxID_EXIT, MyFrame::OnExit)
+   EVT_MENU(DO_TEST, MyFrame::DoTest)
+   EVT_SIZE(MyFrame::OnSize)
+   EVT_BUTTON(BUTTON1, MyFrame::OnButton1)
  END_EVENT_TABLE()
  @endcode
 
  <b>Pay close attention to Step 5</b>.  People often overlook or get
  confused by this powerful feature of the wxWidgets event processing
  system.  To put it a different way, events set to propagate
- (see @ref overview_eventhandling_propagate)
+ (see wxEvent::ShouldPropagate)
  (most likely derived either directly or indirectly from wxCommandEvent)
  will travel up the containment hierarchy from child to parent until the
  maximal propagation level is reached or an event handler is found that
index 67c389dbdad96298deeb37a888bd06ceef14d366..621eaaf39f19cc8484ae1857eba002dc3111c3f6 100644 (file)
@@ -89,7 +89,7 @@
  @li @b wxMemoryFSHandler:
      This handler allows you to access
      data stored in memory (such as bitmaps) as if they were regular files.
-     See @ref memoryfshandler_overview for details.
+     See wxMemoryFSHandler for details.
      Include file is wx/fs_mem.h. URL is prefixed with memory:, e.g.
      "memory:myfile.htm"