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
8439dc45
Commit
8439dc45
authored
Jul 12, 2012
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Eeschema: fix compatibility issue with wxWidgets 2.8.12
parent
8234b9e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
hierarch.cpp
eeschema/hierarch.cpp
+2
-2
No files found.
eeschema/hierarch.cpp
View file @
8439dc45
...
...
@@ -87,8 +87,8 @@ HIERARCHY_TREE::HIERARCHY_TREE( HIERARCHY_NAVIG_DLG* parent ) :
// Make an image list containing small icons
// All icons are expected having the same size.
wxBitmap
tree_nosel_bm
(
KiBitmap
(
tree_nosel_xpm
)
);
imageList
=
new
wxImageList
(
tree_nosel_bm
.
Get
Size
().
x
,
tree_nosel_bm
.
Get
Size
().
y
,
true
,
2
);
imageList
=
new
wxImageList
(
tree_nosel_bm
.
Get
Width
()
,
tree_nosel_bm
.
Get
Height
()
,
true
,
2
);
imageList
->
Add
(
tree_nosel_bm
);
imageList
->
Add
(
KiBitmap
(
tree_sel_xpm
)
);
...
...
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