mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-14 12:49:34 +00:00
Remove some extra semicolons
This commit is contained in:
parent
20f3cdaaea
commit
69974b73db
3d-viewer
3d_cache
3d_canvas
3d_model_viewer
3d_viewer
common
eeschema
gerbview
include
kicad
pcb_calculator
pcbnew
class_drawsegment.cppclass_module.hclass_netclass.hclass_pad.hclass_zone.cppclass_zone_settings.cpp
dialogs
exporters
moduleframe.cpppcb_view.cpppcb_view.hrouter
tools
plugins/3d
polygon
@ -35,6 +35,6 @@ namespace S3D
|
||||
wxString& prevModelSelectDir, int& prevModelWildcard, MODULE_3D_SETTINGS* aModel );
|
||||
|
||||
bool Configure3DPaths( wxWindow* aParent, S3D_FILENAME_RESOLVER* aResolver );
|
||||
};
|
||||
}
|
||||
|
||||
#endif // CACHE_DIALOGS_3D_H
|
||||
|
@ -362,7 +362,7 @@ bool S3D::degenerate( glm::dvec3* pts )
|
||||
return true;
|
||||
|
||||
return false;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
static void calcTriad( glm::dvec3* pts, glm::dvec3& tri )
|
||||
|
@ -242,6 +242,6 @@ namespace S3D
|
||||
|
||||
// read an RGB color
|
||||
bool ReadColor( std::istream& aFile, SGCOLOR& aColor );
|
||||
};
|
||||
}
|
||||
|
||||
#endif // SG_HELPERS_H
|
||||
|
@ -66,7 +66,7 @@ namespace S3D
|
||||
|
||||
void FREE_SMESH( SMESH& aMesh);
|
||||
void FREE_S3DMODEL( S3DMODEL& aModel );
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
|
@ -82,6 +82,6 @@ namespace S3D
|
||||
}
|
||||
};
|
||||
|
||||
}; // end NAMESPACE
|
||||
} // end NAMESPACE
|
||||
|
||||
#endif // STR_RSORT_H
|
||||
|
@ -161,7 +161,7 @@ class EDA_3D_CANVAS : public wxGLCanvas
|
||||
|
||||
void OnTimerTimeout_Redraw( wxTimerEvent& event );
|
||||
|
||||
DECLARE_EVENT_TABLE();
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
||||
private:
|
||||
|
||||
|
@ -105,7 +105,7 @@ private:
|
||||
|
||||
void OnRightClick( wxMouseEvent &event );
|
||||
|
||||
DECLARE_EVENT_TABLE();
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
||||
|
||||
private:
|
||||
|
@ -222,7 +222,7 @@ class EDA_3D_VIEWER : public KIWAY_PLAYER
|
||||
*/
|
||||
void RenderEngineChanged();
|
||||
|
||||
DECLARE_EVENT_TABLE();
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
||||
private:
|
||||
|
||||
|
@ -132,7 +132,7 @@ wxMenuItem* AddMenuItem( wxMenu* aMenu, wxMenu* aSubMenu, int aId,
|
||||
aMenu->Append( item );
|
||||
|
||||
return item;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
wxMenuItem* AddMenuItem( wxMenu* aMenu, wxMenu* aSubMenu, int aId,
|
||||
@ -153,4 +153,4 @@ wxMenuItem* AddMenuItem( wxMenu* aMenu, wxMenu* aSubMenu, int aId,
|
||||
aMenu->Append( item );
|
||||
|
||||
return item;
|
||||
};
|
||||
}
|
||||
|
@ -934,7 +934,7 @@ ECONNECT::ECONNECT( wxXmlNode* aConnect )
|
||||
gate = parseRequiredAttribute<string>( aConnect, "gate" );
|
||||
pin = parseRequiredAttribute<string>( aConnect, "pin" );
|
||||
pad = parseRequiredAttribute<string>( aConnect, "pad" );
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
EDEVICE::EDEVICE( wxXmlNode* aDevice )
|
||||
@ -957,7 +957,7 @@ EDEVICE::EDEVICE( wxXmlNode* aDevice )
|
||||
connectNode = connectNode->GetNext();
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
EDEVICE_SET::EDEVICE_SET( wxXmlNode* aDeviceSet )
|
||||
|
@ -202,7 +202,7 @@ struct APP_SINGLE_TOP : public wxApp
|
||||
#endif
|
||||
};
|
||||
|
||||
IMPLEMENT_APP( APP_SINGLE_TOP );
|
||||
IMPLEMENT_APP( APP_SINGLE_TOP )
|
||||
|
||||
|
||||
bool PGM_SINGLE_TOP::OnPgmInit()
|
||||
|
@ -1397,4 +1397,4 @@ void VIEW::Update( VIEW_ITEM* aItem, int aUpdateFlags )
|
||||
|
||||
const int VIEW::TOP_LAYER_MODIFIER = -VIEW_MAX_LAYERS;
|
||||
|
||||
};
|
||||
}
|
||||
|
@ -1288,13 +1288,13 @@ mpScaleXBase::mpScaleXBase( wxString name, int flags, bool ticks, unsigned int t
|
||||
mpScaleX::mpScaleX( wxString name, int flags, bool ticks, unsigned int type ) :
|
||||
mpScaleXBase( name, flags, ticks, type )
|
||||
{
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
mpScaleXLog::mpScaleXLog( wxString name, int flags, bool ticks, unsigned int type ) :
|
||||
mpScaleXBase( name, flags, ticks, type )
|
||||
{
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
void mpScaleXBase::Plot( wxDC& dc, mpWindow& w )
|
||||
@ -2701,7 +2701,7 @@ void mpWindow::SetMPScrollbars( bool status )
|
||||
//// SetVirtualSize((int) (m_maxX - m_minX), (int) (m_maxY - m_minY));
|
||||
// }
|
||||
// Refresh(false);*/
|
||||
};
|
||||
}
|
||||
|
||||
bool mpWindow::UpdateBBox()
|
||||
{
|
||||
|
@ -72,7 +72,7 @@ struct BOM_PLUGIN
|
||||
*/
|
||||
WX_DECLARE_OBJARRAY( BOM_PLUGIN, BOM_PLUGIN_ARRAY );
|
||||
#include <wx/arrimpl.cpp>
|
||||
WX_DEFINE_OBJARRAY( BOM_PLUGIN_ARRAY );
|
||||
WX_DEFINE_OBJARRAY( BOM_PLUGIN_ARRAY )
|
||||
|
||||
/**
|
||||
* Class BOM_CFG_READER_PARSER
|
||||
|
@ -101,4 +101,4 @@ BITMAP_DEF GetBitmap( GRAPHIC_PINSHAPE shape )
|
||||
|
||||
assert( !"Invalid pin shape" );
|
||||
return 0;
|
||||
};
|
||||
}
|
||||
|
@ -93,7 +93,7 @@ static const wxChar* plot_sheet_list( int aSize )
|
||||
}
|
||||
|
||||
return ret;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_PLOT_SCHEMATIC::SetHPGLPenWidth()
|
||||
|
@ -172,4 +172,4 @@ void SCH_IO_MGR::Save( SCH_FILE_T aFileType, const wxString& aFileName,
|
||||
}
|
||||
|
||||
|
||||
DECLARE_ENUM_VECTOR( SCH_IO_MGR, SCH_FILE_T );
|
||||
DECLARE_ENUM_VECTOR( SCH_IO_MGR, SCH_FILE_T )
|
||||
|
@ -60,7 +60,7 @@ public:
|
||||
|
||||
// ALTIUM,
|
||||
// etc.
|
||||
} );
|
||||
} )
|
||||
|
||||
/**
|
||||
* Return a #SCH_PLUGIN which the caller can use to import, export, save, or load
|
||||
|
@ -46,7 +46,7 @@ class GBR_DISPLAY_OPTIONS;
|
||||
namespace KIGFX
|
||||
{
|
||||
class VIEW;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
/* Shapes id for basic shapes ( .m_Shape member ) */
|
||||
|
@ -49,7 +49,7 @@ class WX_VIEW_CONTROLS;
|
||||
class VIEW_CONTROLS;
|
||||
class PAINTER;
|
||||
class GAL_DISPLAY_OPTIONS;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
class EDA_DRAW_PANEL_GAL : public wxScrolledCanvas
|
||||
|
@ -822,7 +822,7 @@ bool RTREE_QUAL::Load( const char* a_fileName )
|
||||
stream.Close();
|
||||
|
||||
return result;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
RTREE_TEMPLATE
|
||||
|
@ -193,6 +193,6 @@ namespace S3D
|
||||
* creates and initializes an SMESH struct
|
||||
*/
|
||||
SGLIB_API void Init3DMesh( SMESH& aMesh );
|
||||
};
|
||||
}
|
||||
|
||||
#endif // IFSG_API_H
|
||||
|
@ -44,6 +44,6 @@ namespace S3D
|
||||
SGTYPE_SHAPE,
|
||||
SGTYPE_END
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
#endif // SG_TYPES_H
|
||||
|
@ -85,11 +85,11 @@ fcontext_t LIBCONTEXT_CALL_CONVENTION make_fcontext( void* sp, size_t size,
|
||||
void (* fn)( intptr_t ) );
|
||||
|
||||
#ifdef __cplusplus
|
||||
}; // namespace
|
||||
} // namespace
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}; // extern "C"
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
@ -42,7 +42,7 @@ namespace KIGFX
|
||||
{
|
||||
class VIEW;
|
||||
class VIEW_CONTROLS;
|
||||
};
|
||||
}
|
||||
|
||||
enum TOOL_TYPE
|
||||
{
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user