Fix message in KiCad Dialog About (forgotten USE_BOOST_POLYGON_LIBRARY option removed).
This commit is contained in:
parent
b98b23a1a6
commit
32526511de
|
@ -7,9 +7,9 @@
|
|||
|
||||
#ifndef KICAD_BUILD_VERSION
|
||||
#if defined KICAD_GOST
|
||||
# define KICAD_BUILD_VERSION "(2011-oct-15 GOST)"
|
||||
# define KICAD_BUILD_VERSION "(2011-oct-27 GOST)"
|
||||
#else
|
||||
# define KICAD_BUILD_VERSION "(2011-oct-15)"
|
||||
# define KICAD_BUILD_VERSION "(2011-oct-27)"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
|
@ -80,13 +80,9 @@ static void InitKiCadAboutNew( AboutAppInfo& info )
|
|||
#else
|
||||
<< wxT( " Ansi " );
|
||||
#endif
|
||||
libVersion << wxT( "and " )
|
||||
|
||||
#if USE_BOOST_POLYGON_LIBRARY
|
||||
<< wxT( "boost::polygon" );
|
||||
#else
|
||||
<< wxT( "kbool library" );
|
||||
#endif
|
||||
libVersion << wxT( "and boost C++ libraries" );
|
||||
|
||||
libVersion << wxT( "\n" );
|
||||
|
||||
/* Operating System Information */
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
/*****************************************************/
|
||||
/* commandframe.cpp: window handling comman buttons */
|
||||
/*****************************************************/
|
||||
/**
|
||||
* @file commandframe.cpp
|
||||
* @brief Frame showing fast launch buttons and messages box
|
||||
*/
|
||||
|
||||
#include "fctsys.h"
|
||||
#include "macros.h"
|
||||
|
@ -24,7 +25,7 @@ RIGHT_KM_FRAME::RIGHT_KM_FRAME( KICAD_MANAGER_FRAME* parent ) :
|
|||
CreateCommandToolbar();
|
||||
m_ButtonsPanelHeight = m_ButtonsListPosition.y + m_bitmapButtons_maxHeigth + 10;
|
||||
|
||||
// Add the wxTextCtrl showaing all messages from KiCad:
|
||||
// Add the wxTextCtrl showing all messages from KiCad:
|
||||
m_MessagesBox = new wxTextCtrl( this, wxID_ANY, wxEmptyString,
|
||||
wxDefaultPosition, wxDefaultSize,
|
||||
wxTE_MULTILINE | wxSUNKEN_BORDER | wxTE_READONLY );
|
||||
|
@ -87,7 +88,7 @@ void RIGHT_KM_FRAME::CreateCommandToolbar( void )
|
|||
Creates a component (for Eeschema) or a footprint (for Pcbnew) that shows a B&W picture" ) );
|
||||
|
||||
btn = AddBitmapButton( ID_TO_PCB_CALCULATOR, KiBitmap( icon_pcbcalculator_xpm ) );
|
||||
btn->SetToolTip( _( "Pcb calculator" ) );
|
||||
btn->SetToolTip( _( "Pcb calculator, the Suiss army knife..." ) );
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -88,7 +88,7 @@ KICAD_MANAGER_FRAME::KICAD_MANAGER_FRAME( wxWindow* parent,
|
|||
wxAuiPaneInfo(info).Name( wxT( "m_LeftWin" ) ).Left().
|
||||
BestSize( m_LeftWin_Width, clientsize.y ).
|
||||
Layer( 1 ) );
|
||||
|
||||
|
||||
m_auimgr.Update();
|
||||
}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
; General Product Description Definitions
|
||||
!define PRODUCT_NAME "KiCad"
|
||||
!define PRODUCT_VERSION "2011.10.15"
|
||||
!define PRODUCT_VERSION "2011.10.27"
|
||||
!define PRODUCT_WEB_SITE "http://iut-tice.ujf-grenoble.fr/kicad/"
|
||||
!define SOURCEFORGE_WEB_SITE "http://kicad.sourceforge.net/"
|
||||
!define COMPANY_NAME ""
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
release version:
|
||||
2011 oct 15
|
||||
2011 oct 27
|
||||
files (.zip,.tgz):
|
||||
kicad-2011-10-15
|
||||
kicad-2011-10-27
|
||||
|
|
Loading…
Reference in New Issue