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

Try to use bzr rules to commit files with LF only in .cpp and .h files.

Should change CRLF to LF in all bitmaps .cpp files.
In BITMAP_OPAQUE, use unsigned char instead of char for png member
 to remove warnings with some compilers.
Pcbnew: fix  incorrect position of the microwave vertical toolbar and some very minor issues.
Remove obsolete folder resources/icons.
Updates svg icons in folder resources.
parents 4c858cbb 64e1b72b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ set( output_begin "

#include \"bitmaps.h\"

static const char png[] = {"
static const unsigned char png[] = {"
)

set( output_end "};
+71 −71
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@

#include "bitmaps.h"

static const char png[] = {
static const unsigned char png[] = {
 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
 0xce, 0x00, 0x00, 0x03, 0x59, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xed, 0xd6, 0x5b, 0x6c, 0x14,
+36 −36
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@

#include "bitmaps.h"

static const char png[] = {
static const unsigned char png[] = {
 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
 0xce, 0x00, 0x00, 0x01, 0x2f, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0xf8, 0xff, 0xff, 0x3f,
+64 −64
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@

#include "bitmaps.h"

static const char png[] = {
static const unsigned char png[] = {
 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
 0xce, 0x00, 0x00, 0x02, 0xe8, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xbd, 0x95, 0x5b, 0x48, 0x14,
+80 −80
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@

#include "bitmaps.h"

static const char png[] = {
static const unsigned char png[] = {
 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
 0xce, 0x00, 0x00, 0x03, 0xe9, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xed, 0x96, 0x6d, 0x6c, 0x53,
Loading