[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Gnumed-devel] wxpython 2.5 - How to install
From: |
Richard Terry |
Subject: |
Re: [Gnumed-devel] wxpython 2.5 - How to install |
Date: |
Tue, 31 Aug 2004 08:30:35 +1000 |
User-agent: |
KMail/1.5.4 |
I wonder if you can give me a blow by blow description of upgrading to 2.5.
I've failed on a number of occasions.
My favorite disto is ARCH linux - and I've tried build from source
unsuccessfully.
I've put back in m debian (Libranet) hard drive (2.4 kernel) so at least I can
use gnuMed (egenix had problems on arch), but I'm totally unfamiliar with
debian including all the apt-get files sources.list, and am unsure how to
modify things .
Horst says 'grab it from 'experimental'. After some frustrating searches I
couldn't figure out how to do that.
Any help appreciated. I want to try alternate screen designs with wxListbook
control
Exams finished???
Regards
Ricahrd
On Tue, 31 Aug 2004 12:03 am, Sebastian Hilbert wrote:
> Hi
>
> When moving from wxpython 2.4 to 2.5 changes to the code become neccessary.
> We have seen it on the MAC. Anyway. Some minor changes involve
>
> File "/home/basti/sources/gnumed/gnumed/Gnumed/wxpython/gmTopPanel.py",
> line 212, in __do_layout
> self.szr_stacked_rows.Add(1, 3, 0, wxEXPAND)
> File "/usr/lib/python2.3/site-packages/wx/_core.py", line 8950, in Add
> return _core_.Sizer_Add(*args, **kwargs)
> TypeError: wxWindow, wxSizer, wxSize, or (w,h) expected for item
>
> On wxpython 2.4 both versions work as to my knowledge
> self.szr_stacked_rows.Add(1, 3, 0, wxEXPAND)
> as well as
> self.szr_stacked_rows.Add((1, 3), 0, wxEXPAND)
>
> Only the second one works with wxpythoon 2.5. What do you guys think ?
> Is it ok to change all occurences since these changes don't break the code
> for wxpython 2.4 users but render Gnumed unusable for 2.5 users? We could
> even get rid of some:
> if wxPLATFORM == wxMAC
>
> statements. It isn't really MAC specific.