From 4afae651104befccdd5ffc3e9aea0af0abac08cb Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Wed, 25 Sep 2013 09:51:54 -0400 Subject: [PATCH] Fix debug build error in pcbnew/dialogs_fp_lib_table.cpp. --- pcbnew/dialogs/dialog_fp_lib_table.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/dialogs/dialog_fp_lib_table.cpp b/pcbnew/dialogs/dialog_fp_lib_table.cpp index 29a1aaf2a5..dd68317e34 100644 --- a/pcbnew/dialogs/dialog_fp_lib_table.cpp +++ b/pcbnew/dialogs/dialog_fp_lib_table.cpp @@ -582,7 +582,7 @@ class DIALOG_FP_LIB_TABLE : public DIALOG_FP_LIB_TABLE_BASE void optionsEditor( wxMouseEvent& event ) { // @todo: write the options editor, and pass the options to the Footprint*() calls. - D(printf("%s:%d\n", __func__, (int) m_cur_grid->GetRowCount() );) + D(printf("%s:%d\n", __func__, (int) m_cur_grid->GetNumberRows() );) } void onCancelButtonClick( wxCommandEvent& event )