gcc-3.4.1

Поиск
Список
Период
Сортировка
От Thomas Trepl
Тема gcc-3.4.1
Дата
Msg-id 40FA3F0E.3090602@yahoo.de
обсуждение исходный текст
Ответы Re: gcc-3.4.1  (Andreas Pflug <pgadmin@pse-consulting.de>)
Список pgadmin-hackers
Hi,

I'm on a beLFS installation (kernel 2.6.7, glibc-2.3.4-cvs, gcc-3.4.1)
and i have found an issue related to gcc-3.4.1.  I have to add that I'm
really no C++ programmer, so i don't know whether the following patch
produces nice/correct/complete code, but it helps to get pgAdmin3
compilable with gcc-3.4.1.  The patch relies on a cvs checkout of the
18, July 2004.

You may check the patch...

Thomas

diff -Naur pgadmin3-20040718.orig/src/include/dlgClasses.h pgadmin3-20040718/src/include/dlgClasses.h
--- pgadmin3-20040718.orig/src/include/dlgClasses.h    2004-06-21 19:06:00.000000000 +0200
+++ pgadmin3-20040718/src/include/dlgClasses.h    2004-07-18 11:08:29.642299039 +0200
@@ -30,10 +30,10 @@
     void RestorePosition(int defaultX=-1, int defaultY=-1, int defaultW=-1, int defaultH=-1, int minW=100, int
minH=70);
     void SavePosition();
     void LoadResource(const wxChar *name=0);
-
-protected:
     void OnCancel(wxCommandEvent& ev);
     void OnClose(wxCloseEvent& event);
+
+protected:
     wxString dlgName;

     DECLARE_EVENT_TABLE();
@@ -104,6 +104,8 @@
     virtual wxString GetCmd(int step)=0;
     bool Execute(int step=0);
     void Abort();
+    void OnCancel(wxCommandEvent& ev);
+    void OnClose(wxCloseEvent& event);

 protected:
     wxTextCtrl *txtMessages;
@@ -112,8 +114,6 @@
     bool done;

     void OnOK(wxCommandEvent& ev);
-    void OnCancel(wxCommandEvent& ev);
-    void OnClose(wxCloseEvent& event);
     void OnEndProcess(wxProcessEvent& event);

     void OnPollProcess(wxTimerEvent& event);

В списке pgadmin-hackers по дате отправления:

Предыдущее
От: "Dave Page"
Дата:
Сообщение: Re: User's showReference is a problem.
Следующее
От: Andreas Pflug
Дата:
Сообщение: Re: gcc-3.4.1