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
05dc1bbf
Commit
05dc1bbf
authored
Sep 02, 2012
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Plain Diff
fix compil errors
parents
34c74d17
3157b4d1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
edaappl.cpp
common/edaappl.cpp
+1
-1
projet_config.cpp
common/projet_config.cpp
+1
-1
No files found.
common/edaappl.cpp
View file @
05dc1bbf
...
...
@@ -683,7 +683,7 @@ void EDA_APP::SaveSettings()
wxASSERT
(
m_settings
!=
NULL
);
m_settings
->
Write
(
wxT
(
"ShowPageLimits"
),
g_ShowPageLimits
);
m_settings
->
Write
(
wxT
(
"WorkingDir"
),
wxGetCwd
()
);
m_settings
->
Write
(
wxT
(
"BgColor"
),
g_DrawBgColor
);
m_settings
->
Write
(
wxT
(
"BgColor"
),
(
long
)
g_DrawBgColor
);
/* Save the file history list */
m_fileHistory
.
Save
(
*
m_settings
);
...
...
common/projet_config.cpp
View file @
05dc1bbf
...
...
@@ -505,7 +505,7 @@ void PARAM_CFG_SETCOLOR::SaveParam( wxConfigBase* aConfig ) const
if
(
m_Pt_param
==
NULL
||
aConfig
==
NULL
)
return
;
aConfig
->
Write
(
m_Ident
,
*
m_Pt_param
);
aConfig
->
Write
(
m_Ident
,
(
long
)
*
m_Pt_param
);
}
...
...
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