Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
5f198fb0
Commit
5f198fb0
authored
Aug 06, 2009
by
stambaughw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix class method syntax that caused MSVC compiler errors.
parent
c7187652
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
class_undoredo_container.cpp
common/class_undoredo_container.cpp
+3
-4
No files found.
common/class_undoredo_container.cpp
View file @
5f198fb0
...
...
@@ -64,7 +64,7 @@ void PICKED_ITEMS_LIST::PushItem( ITEM_PICKER& aItem )
* @return the picker from the top of the list
* the picker is removed from the list
*/
ITEM_PICKER
PICKED_ITEMS_LIST
::
P
ICKED_ITEMS_LIST
::
P
opItem
()
ITEM_PICKER
PICKED_ITEMS_LIST
::
PopItem
()
{
ITEM_PICKER
item
;
...
...
@@ -80,7 +80,7 @@ ITEM_PICKER PICKED_ITEMS_LIST::PICKED_ITEMS_LIST::PopItem()
/** Function ClearItemsList
* delete only the list of pickers, NOT the picked data itself
*/
void
PICKED_ITEMS_LIST
::
PICKED_ITEMS_LIST
::
ClearItemsList
()
void
PICKED_ITEMS_LIST
::
ClearItemsList
()
{
m_ItemsList
.
clear
();
}
...
...
@@ -150,8 +150,7 @@ void PICKED_ITEMS_LIST::ClearListAndDeleteItems()
default
:
{
wxString
msg
;
msg
.
Printf
(
wxT
(
"ClearUndoORRedoList() error: unknown command type %d"
),
msg
.
Printf
(
wxT
(
"ClearUndoORRedoList() error: unknown command type %d"
),
wrapper
.
m_UndoRedoStatus
);
wxMessageBox
(
msg
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment