~dickelbeck/kicad/merge-4

« back to all changes in this revision

Viewing changes to common/common.cpp

  • Committer: Andrey Fedorushkov
  • Date: 2010-07-13 13:18:13 UTC
  • Revision ID: andrf@mail.ru-20100713131813-zzy2lv24r6nxvtgp
fix conflict variable name for russian GOST

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
 
212
212
    // Adjust the default value for margins to 400 mils (0,4 inch or 10 mm)
213
213
#if defined(KICAD_GOST)
214
 
    m_LeftMargin   = LEFTMARGIN;
215
 
    m_RightMargin  = RIGHTMARGIN;
216
 
    m_TopMargin    = TOPMARGIN;
217
 
    m_BottomMargin = BOTTOMMARGIN;
 
214
    m_LeftMargin   = GOST_LEFTMARGIN;
 
215
    m_RightMargin  = GOST_RIGHTMARGIN;
 
216
    m_TopMargin    = GOST_TOPMARGIN;
 
217
    m_BottomMargin = GOST_BOTTOMMARGIN;
218
218
#else
219
219
    m_LeftMargin = m_RightMargin = m_TopMargin = m_BottomMargin = 400;
220
220
#endif