~cern-kicad/kicad/kicad-pns-tom

« back to all changes in this revision

Viewing changes to kicad/files-io.cpp

  • Committer: Maciej Suminski
  • Date: 2013-08-02 13:57:24 UTC
  • mfrom: (4024.1.238 kicad)
  • mto: This revision was merged to the branch mainline in revision 4221.
  • Revision ID: maciej.suminski@cern.ch-20130802135724-gix6orezshkukodv
Upstream merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
{
134
134
    /* List of file extensions to save. */
135
135
    static const wxChar* extentionList[] = {
136
 
        wxT( "*.sch" ), wxT( "*.lib" ), wxT( "*.cmp" ),
 
136
        wxT( "*.sch" ), wxT( "*.lib" ), wxT( "*.mod" ), wxT( "*.cmp" ),
137
137
        wxT( "*.brd" ), wxT( "*.kicad_pcb" ),
138
138
        wxT( "*.net" ), wxT( "*.pro" ), wxT( "*.pho" ), wxT( "*.py" ),
139
 
        wxT( "*.pdf" ), wxT( "*.txt" ), wxT( "*.dcm" ),
 
139
        wxT( "*.pdf" ), wxT( "*.txt" ), wxT( "*.dcm" ), wxT( "*.kicad_wks" ),
140
140
        NULL
141
141
    };
142
142