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
ceb1de9e
Commit
ceb1de9e
authored
Apr 08, 2009
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eeschema: in file menu: "save as" and "load" uses current path
parent
dfb88c64
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
makefile.gtk
common/makefile.gtk
+2
-2
files-io.cpp
eeschema/files-io.cpp
+1
-1
save_schemas.cpp
eeschema/save_schemas.cpp
+1
-1
No files found.
common/makefile.gtk
View file @
ceb1de9e
...
...
@@ -21,9 +21,9 @@ common.a: $(COMMON_OBJECTS) makefile.gtk makefile.include
ar
-rv
$@
$(COMMON_OBJECTS)
ranlib
$@
pcbcommon.a
:
$(
COMMON_PCB
_OBJECTS) makefile.gtk makefile.include
pcbcommon.a
:
$(
PCB_COMMON
_OBJECTS) makefile.gtk makefile.include
rm
-f
$@
ar
-rv
$@
$(
COMMON_PCB
_OBJECTS)
ar
-rv
$@
$(
PCB_COMMON
_OBJECTS)
ranlib
$@
install
:
common.a pcb_common.a
...
...
eeschema/files-io.cpp
View file @
ceb1de9e
...
...
@@ -80,7 +80,7 @@ int WinEDA_SchematicFrame::LoadOneEEProject( const wxString& FileName,
FullFileName
=
FileName
;
if
(
(
FullFileName
.
IsEmpty
()
)
&&
!
IsNew
)
{
wxFileDialog
dlg
(
this
,
_
(
"Open Schematic"
),
wx
EmptyString
,
wxFileDialog
dlg
(
this
,
_
(
"Open Schematic"
),
wx
GetCwd
()
,
wxEmptyString
,
SchematicFileWildcard
,
wxFD_OPEN
|
wxFD_FILE_MUST_EXIST
);
...
...
eeschema/save_schemas.cpp
View file @
ceb1de9e
...
...
@@ -62,7 +62,7 @@ bool WinEDA_SchematicFrame::SaveEEFile( SCH_SCREEN* screen, int FileSave )
case
FILE_SAVE_NEW
:
{
wxFileDialog
dlg
(
this
,
_
(
"Schematic Files"
),
wx
EmptyString
,
wxFileDialog
dlg
(
this
,
_
(
"Schematic Files"
),
wx
GetCwd
()
,
screen
->
m_FileName
,
SchematicFileWildcard
,
wxFD_SAVE
|
wxFD_OVERWRITE_PROMPT
);
...
...
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