Commit 64f8e0b8 authored by Dick Hollenbeck's avatar Dick Hollenbeck

various

parent a3f2980d
IF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") if( NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" )
MESSAGE(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"") message( FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"" )
ENDIF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") endif()
FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) file( READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files )
STRING(REGEX REPLACE "\n" ";" files "${files}") string( REGEX REPLACE "\n" ";" files "${files}" )
FOREACH(file ${files})
MESSAGE(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"") foreach( file ${files} )
IF(EXISTS "$ENV{DESTDIR}${file}") message( STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"" )
EXEC_PROGRAM( if( EXISTS "$ENV{DESTDIR}${file}" )
"@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\"" EXEC_PROGRAM(
OUTPUT_VARIABLE rm_out "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
RETURN_VALUE rm_retval OUTPUT_VARIABLE rm_out
) RETURN_VALUE rm_retval
IF(NOT "${rm_retval}" STREQUAL 0) )
MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") if( NOT "${rm_retval}" STREQUAL 0 )
ENDIF(NOT "${rm_retval}" STREQUAL 0) message( FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"" )
ELSE(EXISTS "$ENV{DESTDIR}${file}") endif()
MESSAGE(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.") else()
ENDIF(EXISTS "$ENV{DESTDIR}${file}") message( STATUS "File \"$ENV{DESTDIR}${file}\" does not exist." )
ENDFOREACH(file) endif()
endforeach()
...@@ -698,13 +698,13 @@ bool EDA_DRAW_FRAME::HandleBlockBegin( wxDC* aDC, int aKey, const wxPoint& aPosi ...@@ -698,13 +698,13 @@ bool EDA_DRAW_FRAME::HandleBlockBegin( wxDC* aDC, int aKey, const wxPoint& aPosi
break; break;
default: default:
{ {
wxString msg; wxString msg;
msg << wxT( "EDA_DRAW_FRAME::HandleBlockBegin() error: Unknown command " ) << msg << wxT( "EDA_DRAW_FRAME::HandleBlockBegin() error: Unknown command " ) <<
Block->GetCommand(); Block->GetCommand();
DisplayError( this, msg ); DisplayError( this, msg );
} }
break; break;
} }
Block->SetMessageBlock( this ); Block->SetMessageBlock( this );
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include <reporter.h> #include <reporter.h>
REPORTER& REPORTER::Report( const char *aText ) REPORTER& REPORTER::Report( const char* aText )
{ {
Report( FROM_UTF8( aText ) ); Report( FROM_UTF8( aText ) );
return *this; return *this;
......
...@@ -39,11 +39,14 @@ class wxTextCtrl; ...@@ -39,11 +39,14 @@ class wxTextCtrl;
/** /**
* Class REPORTER * Class REPORTER
* is a pure virtual class used to derive REPORTOR objects from. * is a pure virtual class used to derive REPORTER objects from.
* *
* The purpose of the REPORTER object is to hide an object that take a string as an input * The purpose of the REPORTER object is to offer a way for a procedural function
* from other objects. This prevents objects such as wxWidgets UI control internals from * to report multiple errors without having to:
* being exposed to low level KiCad objects dervice from #BOARD_ITEM and #SCH_ITEM. * <ul>
* <li> a) know too much about the caller's UI, i.e. wx. </li>
* <li> b) stop after the first error </li>
* </ul>
*/ */
class REPORTER class REPORTER
{ {
...@@ -56,7 +59,7 @@ public: ...@@ -56,7 +59,7 @@ public:
*/ */
virtual REPORTER& Report( const wxString& aText ) = 0; virtual REPORTER& Report( const wxString& aText ) = 0;
REPORTER& Report( const char *aText ); REPORTER& Report( const char* aText );
REPORTER& operator <<( const wxString& aText ) { return Report( aText ); } REPORTER& operator <<( const wxString& aText ) { return Report( aText ); }
......
...@@ -118,7 +118,7 @@ public: ...@@ -118,7 +118,7 @@ public:
} }
bool DeleteAttribute( const wxString& attrName ) bool DeleteAttribute( const wxString& attrName )
{ {
DeleteProperty( attrName ); return DeleteProperty( attrName );
} }
wxXmlProperty* GetAttributes() const wxXmlProperty* GetAttributes() const
{ {
......
...@@ -116,7 +116,7 @@ std::string BOARD_ITEM::FormatInternalUnits( int aValue ) ...@@ -116,7 +116,7 @@ std::string BOARD_ITEM::FormatInternalUnits( int aValue )
#else #else
// Assume aValue is in nanometers, and that we want the result in millimeters, // Assume aValue is in nanometers, and that we want the result in millimeters,
// and that int is 32 bit wide. Then perform an alternative algorithm. // and that int is 32 bits wide. Then perform an alternative algorithm.
// Can be used to verify that the above algorithm is correctly generating text. // Can be used to verify that the above algorithm is correctly generating text.
// Convert aValue into an integer string, then insert a decimal point manually. // Convert aValue into an integer string, then insert a decimal point manually.
// Results are the same as above general purpose algorithm. // Results are the same as above general purpose algorithm.
...@@ -128,13 +128,13 @@ std::string BOARD_ITEM::FormatInternalUnits( int aValue ) ...@@ -128,13 +128,13 @@ std::string BOARD_ITEM::FormatInternalUnits( int aValue )
else else
{ {
char buf[50]; char buf[50];
int len = sprintf( buf, aValue > 0 ? "%06d" : "%07d", aValue ); int len = sprintf( buf, aValue > 0 ? "%06d" : "%07d", aValue ); // optionally pad w/leading zeros
std::string ret( buf, len ); std::string ret( buf, len );
std::string::iterator it = ret.end() - 1; // last byte std::string::iterator it = ret.end() - 1; // last byte
// insert '.' at 6 positions from end, divides by 10e6 (a million), nm => mm // insert '.' at 6 positions from end, dividing by 10e6 (a million), nm => mm
std::string::iterator decpoint = ret.end() - 6; std::string::iterator decpoint = ret.end() - 6;
// truncate trailing zeros, up to decimal point position // truncate trailing zeros, up to decimal point position
...@@ -147,10 +147,10 @@ std::string BOARD_ITEM::FormatInternalUnits( int aValue ) ...@@ -147,10 +147,10 @@ std::string BOARD_ITEM::FormatInternalUnits( int aValue )
// decpoint is invalidated here, after insert() // decpoint is invalidated here, after insert()
#if 1 // want leading a zero when decimal point is in first position? #if 1 // want a leading zero when decimal point is in first position?
if( ret[0] == '.' ) if( ret[0] == '.' )
{ {
// insert leading zero ahead of decimal. // insert leading zero ahead of decimal point.
ret.insert( ret.begin(), '0' ); ret.insert( ret.begin(), '0' );
} }
else if( ret[0]=='-' && ret[1]=='.' ) else if( ret[0]=='-' && ret[1]=='.' )
......
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