Commit 5f9aefe8 authored by charras's avatar charras
Browse files

minor enhancements related to doc update.

parent b09f3ab7
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -11,7 +11,6 @@ CMAKE
Common
------
* Grep for @TODO or TODO for sourcecode tasks
* Translate comment from French to English
* Use doxygen compatible comments on member functions (.h files)
* Add tooltip text to all non-obvious controls in every dialog window.
  Need to do this using DialogBlocks.
@@ -56,11 +55,6 @@ PCBNew
------
* Use BOARD_ITEM::MenuIcon() in the onrightclick.cpp
* Add unroute option in rightclick menu for components
* Add net class support
  * So the round tripping to freerouter is a dream.
  * So that the export to specctra becomes richer.
  * Netclass should hold a lists of nets, track widths, track spacings,
    via drill sizes and copper diameters.
* Document specctra round tripper, and fix the english translation of help.
* Expose layer name editing. Should dove tail with net class editor from
  a UI perspective.
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
#include "appl_wxstruct.h"


#define BUILD_VERSION "(2009-11-15-unstable)"
#define BUILD_VERSION "(2009-12-05-unstable)"


#ifdef HAVE_SVN_VERSION
+1 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@ DIALOG_ERC::DIALOG_ERC( WinEDA_SchematicFrame* parent ) :
    Init();

    GetSizer()->SetSizeHints( this );
    Centre();
}


+2 −2
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
            <property name="minimum_size"></property>
            <property name="name">DIALOG_ERC_BASE</property>
            <property name="pos"></property>
            <property name="size">438,407</property>
            <property name="size">496,407</property>
            <property name="style">wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER</property>
            <property name="subclass">; </property>
            <property name="title">EESchema Erc</property>
@@ -187,7 +187,7 @@
                                            <property name="permission">none</property>
                                            <object class="sizeritem" expanded="1">
                                                <property name="border">5</property>
                                                <property name="flag"></property>
                                                <property name="flag">wxALIGN_CENTER_VERTICAL</property>
                                                <property name="proportion">0</property>
                                                <object class="wxStaticBoxSizer" expanded="1">
                                                    <property name="id">wxID_ANY</property>
+1 −1
Original line number Diff line number Diff line
@@ -195,10 +195,10 @@ void WinEDA_SchematicFrame::ChangeTextOrient( SCH_TEXT* TextStruct, wxDC* DC )

/*************************************************************************/
SCH_TEXT* WinEDA_SchematicFrame::CreateNewText( wxDC* DC, int type )
{
/*************************************************************************/
/* Routine to create new text struct (GraphicText, label or Glabel).
 */
{
    SCH_TEXT* NewText = NULL;

    g_ItemToRepeat = NULL;
Loading