Commit b4369243 authored by unknown's avatar unknown Committed by jean-pierre charras
Browse files

Warning removal, patches from Camille 019

parent 91c53a94
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
#include <colors.h>     // EDA_COLOR_T definition
#include <layers_id_colors_and_visibility.h>

class EDA_HOTKEY_CONFIG;
struct EDA_HOTKEY_CONFIG;

/* Basic class to build a layer list.
 * this is an basic abstract class to build a layer list selector.
+4 −3
Original line number Diff line number Diff line
@@ -143,10 +143,11 @@ wxString ReturnKeyNameFromCommandId( EDA_HOTKEY** aList, int aCommandId );
 */
int ReturnKeyCodeFromKeyName( const wxString& keyname );

/* An helper enum for AddHotkeyName function
 * In menus we can an a hot key, or an accelerator , or sometimes just a comment
/**
 * An helper enum for AddHotkeyName function
 * In menus we can add a hot key, or an accelerator , or sometimes just a comment
 * Hot keys can perform actions using the current mouse cursor position
 * Accelerators performs the same action as the associated menu
 * Accelerators perform the same action as the associated menu
 * A comment is used in tool tips for some tools (zoom ..)
 *    to show the hot key that performs this action
 */
+1 −1
Original line number Diff line number Diff line
@@ -155,7 +155,7 @@ struct IO_ERROR // : std::exception


/**
 * Class PARSE_ERROR
 * Struct PARSE_ERROR
 * contains a filename or source description, a problem input line, a line number,
 * a byte offset, and an error message which contains the the caller's report and his
 * call site information: CPP source file, function, and line number.
+2 −2
Original line number Diff line number Diff line
@@ -61,8 +61,8 @@ class BOARD_ITEM;
class PCB_LAYER_BOX_SELECTOR;
class NETLIST;
class REPORTER;
class PARSE_ERROR;
class IO_ERROR;
struct PARSE_ERROR;
struct IO_ERROR;
class FP_LIB_TABLE;

/**
+2 −2
Original line number Diff line number Diff line
@@ -568,8 +568,8 @@ bool IDF_BOARD::WriteDrills( void )

    fprintf( layoutFile, ".DRILLED_HOLES\n" );

    std::list<struct IDF_DRILL_DATA*>::iterator ds  = drills.begin();
    std::list<struct IDF_DRILL_DATA*>::iterator de  = drills.end();
    std::list<class IDF_DRILL_DATA*>::iterator ds  = drills.begin();
    std::list<class IDF_DRILL_DATA*>::iterator de  = drills.end();

    while( ds != de )
    {
Loading