Update of /cvsroot/mahogany/M/src/adb
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21844/src/adb

Modified Files:
        AdbFrame.cpp ExportVCard.cpp 
Log Message:
fixed compilation with WXWIN_COMPATIBILITY_2_4 == 0

Index: AdbFrame.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/adb/AdbFrame.cpp,v
retrieving revision 1.119
retrieving revision 1.120
diff -b -u -2 -r1.119 -r1.120
--- AdbFrame.cpp        24 Jan 2005 18:36:11 -0000      1.119
+++ AdbFrame.cpp        24 Nov 2005 13:30:53 -0000      1.120
@@ -2183,5 +2183,5 @@
                       _T("adb"),
                       _("Address books (*.adb)|*.adb|All files (*.*)|*.*"),
-                      wxHIDE_READONLY | (bDoCreate ? 0 : wxFILE_MUST_EXIST),
+                      bDoCreate ? 0 : wxFILE_MUST_EXIST,
                       this
                      );
@@ -2288,5 +2288,5 @@
                         _T("vcf"),
                         _("vCard files (*.vcf)|*.vcf|All files (*.*)|*.*"),
-                        wxHIDE_READONLY,
+                        0,
                         this
                       );
@@ -2335,5 +2335,5 @@
                         _T("vcf"),
                         _("vCard files (*.vcf)|*.vcf|All files (*.*)|*.*"),
-                        wxHIDE_READONLY | wxFILE_MUST_EXIST,
+                        wxFILE_MUST_EXIST,
                         this
                       );

Index: ExportVCard.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/adb/ExportVCard.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -u -2 -r1.4 -r1.5
--- ExportVCard.cpp     16 Oct 2003 10:29:23 -0000      1.4
+++ ExportVCard.cpp     24 Nov 2005 13:30:53 -0000      1.5
@@ -319,5 +319,5 @@
                                 NULL, NULL, _T(".vcf"),
                                 _("vCard files (*.vcf)|*.vcf|All files 
(*.*)|*.*"),
-                                wxSAVE | wxHIDE_READONLY);
+                                wxSAVE);
       if ( !filename )
       {



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Mahogany-cvsupdates mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to