Commit 32526511 authored by jean-pierre charras's avatar jean-pierre charras

Fix message in KiCad Dialog About (forgotten USE_BOOST_POLYGON_LIBRARY option removed).

parent b98b23a1
...@@ -7,9 +7,9 @@ ...@@ -7,9 +7,9 @@
#ifndef KICAD_BUILD_VERSION #ifndef KICAD_BUILD_VERSION
#if defined KICAD_GOST #if defined KICAD_GOST
# define KICAD_BUILD_VERSION "(2011-oct-15 GOST)" # define KICAD_BUILD_VERSION "(2011-oct-27 GOST)"
#else #else
# define KICAD_BUILD_VERSION "(2011-oct-15)" # define KICAD_BUILD_VERSION "(2011-oct-27)"
#endif #endif
#endif #endif
......
...@@ -80,13 +80,9 @@ static void InitKiCadAboutNew( AboutAppInfo& info ) ...@@ -80,13 +80,9 @@ static void InitKiCadAboutNew( AboutAppInfo& info )
#else #else
<< wxT( " Ansi " ); << wxT( " Ansi " );
#endif #endif
libVersion << wxT( "and " )
#if USE_BOOST_POLYGON_LIBRARY libVersion << wxT( "and boost C++ libraries" );
<< wxT( "boost::polygon" );
#else
<< wxT( "kbool library" );
#endif
libVersion << wxT( "\n" ); libVersion << wxT( "\n" );
/* Operating System Information */ /* Operating System Information */
......
/*****************************************************/ /**
/* commandframe.cpp: window handling comman buttons */ * @file commandframe.cpp
/*****************************************************/ * @brief Frame showing fast launch buttons and messages box
*/
#include "fctsys.h" #include "fctsys.h"
#include "macros.h" #include "macros.h"
...@@ -24,7 +25,7 @@ RIGHT_KM_FRAME::RIGHT_KM_FRAME( KICAD_MANAGER_FRAME* parent ) : ...@@ -24,7 +25,7 @@ RIGHT_KM_FRAME::RIGHT_KM_FRAME( KICAD_MANAGER_FRAME* parent ) :
CreateCommandToolbar(); CreateCommandToolbar();
m_ButtonsPanelHeight = m_ButtonsListPosition.y + m_bitmapButtons_maxHeigth + 10; 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, m_MessagesBox = new wxTextCtrl( this, wxID_ANY, wxEmptyString,
wxDefaultPosition, wxDefaultSize, wxDefaultPosition, wxDefaultSize,
wxTE_MULTILINE | wxSUNKEN_BORDER | wxTE_READONLY ); wxTE_MULTILINE | wxSUNKEN_BORDER | wxTE_READONLY );
...@@ -87,7 +88,7 @@ void RIGHT_KM_FRAME::CreateCommandToolbar( void ) ...@@ -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" ) ); 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 = AddBitmapButton( ID_TO_PCB_CALCULATOR, KiBitmap( icon_pcbcalculator_xpm ) );
btn->SetToolTip( _( "Pcb calculator" ) ); btn->SetToolTip( _( "Pcb calculator, the Suiss army knife..." ) );
} }
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
; General Product Description Definitions ; General Product Description Definitions
!define PRODUCT_NAME "KiCad" !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 PRODUCT_WEB_SITE "http://iut-tice.ujf-grenoble.fr/kicad/"
!define SOURCEFORGE_WEB_SITE "http://kicad.sourceforge.net/" !define SOURCEFORGE_WEB_SITE "http://kicad.sourceforge.net/"
!define COMPANY_NAME "" !define COMPANY_NAME ""
......
release version: release version:
2011 oct 15 2011 oct 27
files (.zip,.tgz): files (.zip,.tgz):
kicad-2011-10-15 kicad-2011-10-27
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment