projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
made XPM data const
[wxWidgets.git]
/
src
/
gtk1
/
notebook.cpp
diff --git
a/src/gtk1/notebook.cpp
b/src/gtk1/notebook.cpp
index c1c1a2d9d3818a044653c76f1445bed836fd7aa9..6b0b569e00082a6ac54c4139219321b8c28a1249 100644
(file)
--- a/
src/gtk1/notebook.cpp
+++ b/
src/gtk1/notebook.cpp
@@
-654,7
+654,7
@@
bool wxNotebook::InsertPage( size_t position,
if ( position == GetPageCount() )
m_pagesData.Append( nb_page );
else
- m_pagesData.Insert(
m_pagesData.Item( position )
, nb_page );
+ m_pagesData.Insert(
position
, nb_page );
m_pages.Insert(win, position);