doc update.

This commit is contained in:
charras 2008-07-13 10:04:00 +00:00
parent 0cc46a79fd
commit d60e906a55
4 changed files with 63 additions and 743 deletions

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -342,7 +342,9 @@ void MODULE::DrawEdgesOnly( WinEDA_DrawPanel* panel, wxDC* DC,
} }
/**************************************/
bool MODULE::Save( FILE* aFile ) const bool MODULE::Save( FILE* aFile ) const
/**************************************/
{ {
char statusTxt[8]; char statusTxt[8];
BOARD_ITEM* item; BOARD_ITEM* item;

View File

@ -71,7 +71,9 @@ TEXTE_MODULE::~TEXTE_MODULE()
} }
/*******************************************/
bool TEXTE_MODULE::Save( FILE* aFile ) const bool TEXTE_MODULE::Save( FILE* aFile ) const
/*******************************************/
{ {
MODULE* parent = (MODULE*) GetParent(); MODULE* parent = (MODULE*) GetParent();
int orient = m_Orient; int orient = m_Orient;
@ -79,7 +81,7 @@ bool TEXTE_MODULE::Save( FILE* aFile ) const
if( parent ) if( parent )
orient += parent->m_Orient; orient += parent->m_Orient;
int ret = fprintf( aFile, "T%d %d %d %d %d %d %d %c %c %d \"%.16s\"\n", int ret = fprintf( aFile, "T%d %d %d %d %d %d %d %c %c %d \"%s\"\n",
m_Type, m_Type,
m_Pos0.x, m_Pos0.y, m_Pos0.x, m_Pos0.y,
m_Size.y, m_Size.x, m_Size.y, m_Size.x,