Commit 126c384d authored by charras's avatar charras
Browse files

Eeschema date in frame reference updated at each modification.

parent 71c327b2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
#define KICAD_BUILD_VERSION "(2010-02-17)"
#endif

#define VERSION_STABILITY "RC3"
#define VERSION_STABILITY "RC3a"

/** Function GetBuildVersion()
 * Return the build date and version
+1 −1
Original line number Diff line number Diff line
@@ -228,7 +228,7 @@ void WinEDA_SchematicFrame::DeleteAnnotation( bool aCurrentSheetOnly,
            }
        }

        screen->SetModify();
        OnModify( );
        if( aCurrentSheetOnly )
            break;
        screen = ScreenList.GetNext();
+5 −5
Original line number Diff line number Diff line
@@ -171,7 +171,7 @@ void WinEDA_SchematicFrame::HandleBlockPlace( wxDC* DC )
        break;
    }

    GetScreen()->SetModify();
    OnModify( );

    /* clear struct.m_Flags  */
    SCH_ITEM* Struct;
@@ -268,7 +268,7 @@ int WinEDA_SchematicFrame::HandleBlockEnd( wxDC* DC )
            {
                ii = -1;
                DeleteItemsInList( DrawPanel, block->m_ItemsSelection );
                GetScreen()->SetModify();
                OnModify( );
            }
            block->ClearItemsList();
            TestDanglingEnds( GetScreen()->EEDrawList, DC );
@@ -395,7 +395,7 @@ void WinEDA_SchematicFrame::HandleBlockEndByPopUp( int Command, wxDC* DC )
        {
            ii = -1;
            DeleteItemsInList( DrawPanel, block->m_ItemsSelection );
            GetScreen()->SetModify();
            OnModify( );
        }
        TestDanglingEnds( GetScreen()->EEDrawList, DC );
        DrawPanel->Refresh();
@@ -440,7 +440,7 @@ void WinEDA_SchematicFrame::HandleBlockEndByPopUp( int Command, wxDC* DC )
                                UR_MIRRORED_Y,
                                mirrorPoint );
            MirrorListOfItems( block->m_ItemsSelection, mirrorPoint );
            GetScreen()->SetModify();
            OnModify( );
        }
        TestDanglingEnds( GetScreen()->EEDrawList, DC );
        DrawPanel->Refresh();
@@ -578,7 +578,7 @@ void WinEDA_SchematicFrame::PasteListOfItems( wxDC* DC )
        Struct = Struct->Next() )
        Struct->m_Flags = 0;

    GetScreen()->SetModify();
    OnModify( );

    return;
}
+1 −1
Original line number Diff line number Diff line
@@ -259,7 +259,7 @@ void WinEDA_LibeditFrame::HandleBlockPlace( wxDC* DC )
        break;
    }

    GetScreen()->SetModify();
    OnModify();

    DrawPanel->ManageCurseur             = NULL;
    DrawPanel->ForceCloseManageCurseur   = NULL;
+3 −3
Original line number Diff line number Diff line
@@ -361,7 +361,7 @@ void WinEDA_SchematicFrame::EndSegment( wxDC* DC )
    SaveCopyInUndoList( s_OldWiresList, UR_WIRE_IMAGE );
    s_OldWiresList = NULL;

    GetScreen()->SetModify();
    OnModify( );
}


@@ -537,7 +537,7 @@ SCH_JUNCTION* WinEDA_SchematicFrame::CreateNewJunctionStruct(

    NewJunction->SetNext( GetScreen()->EEDrawList );
    GetScreen()->EEDrawList = NewJunction;
    GetScreen()->SetModify();
    OnModify( );
    if( PutInUndoList )
        SaveCopyInUndoList( NewJunction, UR_NEW );
    return NewJunction;
@@ -558,7 +558,7 @@ SCH_NO_CONNECT* WinEDA_SchematicFrame::CreateNewNoConnectStruct( wxDC* DC )

    NewNoConnect->SetNext( GetScreen()->EEDrawList );
    GetScreen()->EEDrawList = NewNoConnect;
    GetScreen()->SetModify();
    OnModify( );
    SaveCopyInUndoList( NewNoConnect, UR_NEW );
    return NewNoConnect;
}
Loading