Commit 62c9e7e0 authored by jean-pierre charras's avatar jean-pierre charras
Browse files

Minor code cleaning.

parent 67e24be1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -139,6 +139,7 @@ set(BITMAP_SRCS
    gbr_select_mode1.xpm
    gbr_select_mode2.xpm
    gerber_file.xpm
    gerber_recent_files.xpm
    gerbview_drill_file.xpm
    gerbview_clear_layers.xpm
    gerber_open_dcode_file.xpm
+38 −0
Original line number Diff line number Diff line
/* XPM */
char *gerber_recent_files_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 16 1",
"$ c #969997",
"X c #B4B4B3",
"% c #686A67",
"O c #A4A6A4",
"+ c #7F817D",
"; c #8C8D8C",
". c #BEBEBD",
"@ c #D5D5D3",
"  c None",
": c #929294",
"& c #2C2D2F",
"= c #5C5E5A",
"- c #505352",
"o c #E4E6E4",
"# c #747674",
"* c #434644",
/* pixels */
"    ..... .X.   ",
"    ooO++.X. . @",
"   @.#OO.$#OX X@",
"  @ X$$...%&#X.@",
"  X@$&*X=-$;$ X@",
"  $;  @ $X  X=; ",
"  $O%-=;O+%%%#%O",
"  .:O$#-&**-%#+#",
"    O;;:;++%##%-",
" .$$$$:;;;;++#--",
"#-=%%#%==--*-%-%",
"%%#+;:;+#%%#%;=#",
"###+;:;+#%=%=#*O",
"#=-=%#%-****-#O ",
"%-+;;:$$OX.     ",
"=               "
};
+2463 −0

File added.

Preview size limit exceeded, changes collapsed.

+0 −1
Original line number Diff line number Diff line
@@ -30,7 +30,6 @@ set(CVPCB_SRCS
    class_footprints_listbox.cpp
    cvframe.cpp
    cvpcb.cpp
    dummy_functions.cpp
    genequiv.cpp
    init.cpp
    listboxes.cpp

cvpcb/dummy_functions.cpp

deleted100644 → 0
+0 −21
Original line number Diff line number Diff line
/* dummy_functions.cpp
 *
 *  There are functions used in some classes.
 *  they are useful in pcbnew, but have no meaning or are never used
 *  in cvpcb or gerbview.
 *  but they must exist because they appear in some classes, and here, no nothing.
 */
#include "fctsys.h"

#include "common.h"
#include "pcbnew.h"


TRACK* Marque_Une_Piste( BOARD* aPcb,
                         TRACK* aStartSegm,
                         int*   aSegmCount,
                         int*   aTrackLen,
                         bool   aReorder )
{
    return NULL;
}
Loading