Commit 9b58687c authored by CHARRAS's avatar CHARRAS
Browse files

rename dialog_clean_pcb.pjd, other minor changes

parent 5d2817ff
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -4,6 +4,18 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with 
email address.

2007-Oct-21 UPDATE  Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
+ pcbnew:
	rename dialog_clean_pcb.pjd to cleaningoptions_dialog.pjd, 
	accordind to the corresponding cpp filename.
	enter the new tool tips in cleaningoptions_dialog.pjd.
+all:
	USE_RESIZE_BORDER is now defined (default) in fctsys.h.
	Therefore, under windows, dialogs are now resizable (like under unix)



2007-Oct-21 UPDATE   Geoff Harland <gharlandau@yahoo.com.au>
================================================================================
+ eeschema & pcbnew & gerbview
+1 −1
Original line number Diff line number Diff line
@@ -158,7 +158,7 @@ bool ColorFound = false;
    line = new wxStaticLine( this, -1, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
    OuterBoxSizer->Add(line, 0, wxGROW|wxLEFT|wxRIGHT|wxTOP, 5);

#ifdef 0
#if 0
    BottomBoxSizer = new wxBoxSizer(wxHORIZONTAL);
    OuterBoxSizer->Add(BottomBoxSizer, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);

+3 −2
Original line number Diff line number Diff line
@@ -466,7 +466,7 @@ void WinEDA_PartPropertiesFrame::BuildPanelBasic()

/*********************************************************/
void WinEDA_PartPropertiesFrame::BuildPanelEditField()
/**********************************************************/
/*********************************************************/

/* Create and build the panel managing the fields (REF, VALUE ...)
 *  of the component
@@ -515,7 +515,7 @@ void WinEDA_PartPropertiesFrame::BuildPanelEditField()

    // Create the box for text editing (text, size)
    m_FieldTextCtrl = new WinEDA_GraphicTextCtrl( m_PanelField,
                                                  _( "Value:" ),
                                                  _( "Value/Chip Name:" ),
                                                  m_FieldText[FieldId], m_FieldSize[FieldId],
                                                  g_UnitMetric, LeftBoxSizer, 200 );

@@ -548,6 +548,7 @@ void WinEDA_PartPropertiesFrame::BuildPanelEditField()
        else
            fieldnamelist[ii] = m_FieldName[ii];
    }
	fieldnamelist[VALUE] << wxT("/") << _("Chip Name");

    m_FieldSelection = new wxRadioBox( m_PanelField, ID_ON_SELECT_FIELD,
                                       _( "Field to edit" ), wxDefaultPosition, wxDefaultSize,
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@

COMMON_GLOBL wxString g_BuildVersion
#ifdef EDA_BASE
	(wxT("(2007-10-08)"))
	(wxT("(2007-10-21)"))
#endif
;

+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@
#define FALSE      ((bool)0)
#endif


#define USE_RESIZE_BORDER
#if defined(__UNIX__) || defined(USE_RESIZE_BORDER)
#define MAYBE_RESIZE_BORDER wxRESIZE_BORDER // linux users like resizeable borders
#else
Loading