← Back to team overview

kicad-developers team mailing list archive

Re: problem with the Help link "getting started in kicad"

 

I am sorry, the post from Frank bennett was private for me
as for Kicad developer. But I think I am not the person who can
answer such questions.
So I can only retranslate this questions to Kicad developers forum.
Alexander.

Frank bennett wrote.
kicad /help/about/developers - I was a little hurt to see my name
   didn't make the short list, (even if I only added eeschema/backAnno)

EEschema, pcbnew - NICE look!!!
-new icons look great
-open places - it might be nice (for new users) to see the installed
  demos as a selection (PATH='.' is there,right?)
-demos I see missing a favorite "kit-dev-coldfire-xilinx_5213"
  even though it's checked in and working. Are demos our only set of
  regression tests? It would be nice to have a "user contrib designs,
  symbols, footprints libs" site somewhere...results from something
  like a open hardware project taking a modified panda board forward.

So if I want to fix "demos/CMakeLists.txt" and maybe the Kicad/file/open
what is greenie developer suspose to do? in addition to how_to_compile.txt,
which was hard to find, I think we need a how_to_summit_simple_changes.txt!
or bzr, developer tricks:
  How do I know which files I have changed or added to my local depot?
  (like 'svn st') or about to submit...I guess I'm just missing the svn,
  sf.net development mode of operation!

-Frank Bennett, hardcore 'C', Verilog, svn dude


02 марта 2012, 07:50 от Alexander Zakamaldin <zaka62@xxxxxxx>:
> Hi Dick!
> 
> The "const" specification is really useful feature, especially for those who clearly
> understands what does it stands for.
> By the way, please answer Frank bennett, especially to his question about Kicad
> developers list and about contributors wishes.
> 
> Alexander.
> 
> 02 марта 2012, 01:12 от Dick Hollenbeck <dick@xxxxxxxxxxx>:
> > On 03/01/2012 09:29 AM, Alexander Zakamaldin wrote:
> > > === modified file 'common/basicframe.cpp'
> > > --- common/basicframe.cpp	2012-02-17 14:17:50 +0000
> > > +++ common/basicframe.cpp	2012-03-01 15:17:12 +0000
> > > @@ -341,7 +341,7 @@
> > >
> > >          if( !helpFile )
> > >          {   // Try to find "Getting_Started_in_KiCad.pdf"
> > > -            wxGetApp().GetHelpFileName() = wxT( "Getting_Started_in_KiCad.pdf" );
> > > +            wxGetApp().SetHelpFileName( wxT( "Getting_Started_in_KiCad.pdf" ) );
> > >              helpFile = wxGetApp().GetHelpFile();
> > >          }
> >
> > The original problem would have not come about if the return value of the
> > GetHelpFileName() was
> >
> > const wxString
> >
> > instead of
> >
> > wxString
> >
> > The compiler could have caught the problem then.  I also like const wxString because it
> > lets you alternate into
> >
> > const wxString&
> >
> > without issue out in client land as well.
> >
> > Thanks for the fix.
> >
> > _______________________________________________
> > Mailing list: https://launchpad.net/~kicad-developers
> > Post to     : kicad-developers@xxxxxxxxxxxxxxxxxxx
> > Unsubscribe : https://launchpad.net/~kicad-developers
> > More help   : https://help.launchpad.net/ListHelp
> >
> _______________________________________________
> Mailing list: https://launchpad.net/~kicad-developers
> Post to     : kicad-developers@xxxxxxxxxxxxxxxxxxx
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
> 

Follow ups

References