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

various

parent a3f2980d
Loading
Loading
Loading
Loading
+21 −20
Original line number Original line Diff line number Diff line
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}\"" )
    if( EXISTS "$ENV{DESTDIR}${file}" )
        EXEC_PROGRAM(
        EXEC_PROGRAM(
            "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
            "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
            OUTPUT_VARIABLE rm_out
            OUTPUT_VARIABLE rm_out
            RETURN_VALUE rm_retval
            RETURN_VALUE rm_retval
            )
            )
    IF(NOT "${rm_retval}" STREQUAL 0)
        if( NOT "${rm_retval}" STREQUAL 0 )
      MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
            message( FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"" )
    ENDIF(NOT "${rm_retval}" STREQUAL 0)
        endif()
  ELSE(EXISTS "$ENV{DESTDIR}${file}")
    else()
    MESSAGE(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
        message( STATUS "File \"$ENV{DESTDIR}${file}\" does not exist." )
  ENDIF(EXISTS "$ENV{DESTDIR}${file}")
    endif()
ENDFOREACH(file)
endforeach()
+8 −5
Original line number Original line Diff line number Diff line
@@ -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
{
{
+1 −1
Original line number Original line Diff line number Diff line
@@ -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
    {
    {
+5 −5
Original line number Original line Diff line number Diff line
@@ -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 )
    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 )


            // 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]=='.' )
+1 −1

File changed.

Contains only whitespace changes.

+7 −7

File changed.

Contains only whitespace changes.

Loading