I finally compiled 0.64.2. Unfortunately, I got a compiler error which I
fixed with the attached patch.
MigrateWizardDstPage::TransferDataToWindow ()':
.src/modules/Migrate.cpp:952: conditional expression between distinct
pointer types `IMAPServerPanel *' and `LocalPanel *' lacks a cast
.src/modules/Migrate.cpp:952: `void *' is not a pointer-to-object type
.src/modules/Migrate.cpp: In method `bool
MigrateWizardDstPage::TransferDataFromWindow ()':
.src/modules/Migrate.cpp:957: conditional expression between distinct
pointer types `IMAPServerPanel *' and `LocalPanel *' lacks a cast
.src/modules/Migrate.cpp:957: `void *' is not a pointer-to-object type
Another problem, I haven't been able to update my wxWindows CVS tree.
When I try 'cvs up', I get
"cvs update: authorization failed: server cvs.wxwindows.org rejected access
to /home/wxcvs for user anoncvs".
I haven't changed anything since my last successful update on the 7th. My
failed attempts occured on 2002-10-10 at 1901, 1902, and 2302 (-0700).
When I try to browse the CVS source at
http://cvs.wxwindows.org/cgi-bin/viewcvs.cgi/, I get a 404 error.
RedHat 7.3
Linux kernel 2.4.18-10
gcc 2.96-112
wxWindows 2.3.3 last CVS update on 2002-10-07
cvs 1.11.1p1-7
--
Mac :})
Give a hobbit a fish and he eats fish for a day.
Give a hobbit a ring and he eats fish for an age.
diff -up "Migrate.cpp-0" "Migrate.cpp"
Index: ./Migrate.cpp
--- Migrate.cpp-0 Tue Oct 8 14:28:18 2002
+++ Migrate.cpp Thu Oct 10 22:25:32 2002
@@ -949,12 +949,18 @@ bool MigrateWizardDstPage::TransferDataT
UseIMAP(useIMAP);
- return (useIMAP ? m_panelIMAP : m_panelLocal)->TransferDataToWindow();
+ if ( useIMAP )
+ return m_panelIMAP->TransferDataToWindow();
+ else
+ return m_panelLocal->TransferDataToWindow();
}
bool MigrateWizardDstPage::TransferDataFromWindow()
{
- return (Data().toIMAP ? m_panelIMAP : m_panelLocal)->TransferDataFromWindow();
+ if (Data().toIMAP )
+ return m_panelIMAP->TransferDataFromWindow();
+ else
+ return m_panelLocal->TransferDataFromWindow();
}
// ----------------------------------------------------------------------------