From 9636086f5200c5287232b7972538a2739baa34a5 Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Fri, 10 Mar 2017 10:09:55 -0500 Subject: [PATCH] Fix build bug for const incorrectness. --- eeschema/libeditframe.cpp | 2 +- eeschema/libeditframe.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eeschema/libeditframe.cpp b/eeschema/libeditframe.cpp index 4d27b3f30e..0c28056337 100644 --- a/eeschema/libeditframe.cpp +++ b/eeschema/libeditframe.cpp @@ -1439,7 +1439,7 @@ bool LIB_EDIT_FRAME::SynchronizePins() } -void LIB_EDIT_FRAME::refreshSchematic() const +void LIB_EDIT_FRAME::refreshSchematic() { // This is not the most effecient way to do this because the changed library may not have // any effect on the schematic symbol links. Since this is not called very often, take the diff --git a/eeschema/libeditframe.h b/eeschema/libeditframe.h index 37f017caef..6da2db68c0 100644 --- a/eeschema/libeditframe.h +++ b/eeschema/libeditframe.h @@ -608,7 +608,7 @@ private: const KICAD_T aFilterList[] = LIB_COLLECTOR::AllItems ); void EditField( LIB_FIELD* Field ); - void refreshSchematic() const; + void refreshSchematic(); public: /**