Update of /cvsroot/mahogany/M/src/gui
In directory sc8-pr-cvs1:/tmp/cvs-serv21540/src/gui
Modified Files:
ClickAtt.cpp ClickURL.cpp MImport.cpp wxAttachDialog.cpp
wxBrowseButton.cpp wxColumnsDlg.cpp wxComposeView.cpp
wxDialogLayout.cpp wxFiltersDialog.cpp wxFolderMenu.cpp
wxFolderTree.cpp wxFolderView.cpp wxHeadersDialogs.cpp
wxIconManager.cpp wxMApp.cpp wxMDialogs.cpp
wxMFolderDialogs.cpp wxMainFrame.cpp wxMessageView.cpp
wxModulesDlg.cpp wxMsgCmdProc.cpp wxOptionsDlg.cpp
wxRenameDialog.cpp wxSearchDialog.cpp wxSortDialog.cpp
wxSubfoldersDialog.cpp wxTemplateDialog.cpp wxTextDialog.cpp
wxThrDialog.cpp wxWizards.cpp wxllist.cpp wxlwindow.cpp
Log Message:
fixes for VC++ 6 warnings not disabled any more in wx/defs.h
Index: ClickAtt.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/ClickAtt.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -u -2 -r1.4 -r1.5
--- ClickAtt.cpp 15 Dec 2002 17:39:43 -0000 1.4
+++ ClickAtt.cpp 22 Jul 2003 22:01:39 -0000 1.5
@@ -52,4 +52,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(MimePopup)
};
@@ -174,5 +175,5 @@
}
-void ClickableAttachment::OnDoubleClick(const wxPoint& pt) const
+void ClickableAttachment::OnDoubleClick(const wxPoint& /* pt */) const
{
// open the attachment
Index: ClickURL.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/ClickURL.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -b -u -2 -r1.11 -r1.12
--- ClickURL.cpp 15 Jul 2003 00:47:33 -0000 1.11
+++ ClickURL.cpp 22 Jul 2003 22:01:40 -0000 1.12
@@ -72,4 +72,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(UrlPopup)
};
@@ -446,5 +447,5 @@
// ----------------------------------------------------------------------------
-void ClickableURL::OnLeftClick(const wxPoint& pt) const
+void ClickableURL::OnLeftClick(const wxPoint& /* pt */) const
{
if ( IsMail() )
Index: MImport.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/MImport.cpp,v
retrieving revision 1.16
retrieving revision 1.17
diff -b -u -2 -r1.16 -r1.17
--- MImport.cpp 12 Sep 2002 02:36:49 -0000 1.16
+++ MImport.cpp 22 Jul 2003 22:01:40 -0000 1.17
@@ -79,4 +79,6 @@
private:
wxArrayImporters& m_importers;
+
+ DECLARE_NO_COPY_CLASS(ImportersArrayFree)
};
@@ -120,4 +122,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxImportDialog)
};
Index: wxAttachDialog.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxAttachDialog.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -u -2 -r1.3 -r1.4
--- wxAttachDialog.cpp 8 Sep 2002 19:23:09 -0000 1.3
+++ wxAttachDialog.cpp 22 Jul 2003 22:01:40 -0000 1.4
@@ -81,4 +81,6 @@
wxCheckBox *m_chkDontShowAgain;
+
+ DECLARE_NO_COPY_CLASS(wxAttachmentDialog)
};
Index: wxBrowseButton.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxBrowseButton.cpp,v
retrieving revision 1.30
retrieving revision 1.31
diff -b -u -2 -r1.30 -r1.31
--- wxBrowseButton.cpp 19 Jul 2003 12:26:10 -0000 1.30
+++ wxBrowseButton.cpp 22 Jul 2003 22:01:40 -0000 1.31
@@ -65,4 +65,7 @@
const BitmapArray& icons,
int selection);
+
+private:
+ DECLARE_NO_COPY_CLASS(wxIconView)
};
@@ -86,4 +89,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxIconSelectionDialog)
};
@@ -118,4 +122,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxColorTextEvtHandler)
};
Index: wxColumnsDlg.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxColumnsDlg.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -b -u -2 -r1.7 -r1.8
--- wxColumnsDlg.cpp 8 Sep 2002 19:23:09 -0000 1.7
+++ wxColumnsDlg.cpp 22 Jul 2003 22:01:40 -0000 1.8
@@ -114,4 +114,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxFolderViewColumnsDialog)
};
@@ -349,5 +350,5 @@
}
-void wxFolderViewColumnsDialog::OnReset(wxCommandEvent& event)
+void wxFolderViewColumnsDialog::OnReset(wxCommandEvent& WXUNUSED(event))
{
// neither does it make sense to set as default the widths if we want to
Index: wxComposeView.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxComposeView.cpp,v
retrieving revision 1.338
retrieving revision 1.339
diff -b -u -2 -r1.338 -r1.339
--- wxComposeView.cpp 15 Jul 2003 00:47:33 -0000 1.338
+++ wxComposeView.cpp 22 Jul 2003 22:01:40 -0000 1.339
@@ -415,4 +415,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxRcptTypeChoice)
};
@@ -440,4 +441,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxTextCtrlProcessingEnter)
};
@@ -450,4 +452,7 @@
public:
wxSubjectTextCtrl(wxWindow *parent) : wxTextCtrlProcessingEnter(parent) { }
+
+private:
+ DECLARE_NO_COPY_CLASS(wxSubjectTextCtrl)
};
@@ -484,4 +489,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxAddressTextCtrl)
};
@@ -505,4 +511,5 @@
private:
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxMainAddressTextCtrl)
};
@@ -524,4 +531,5 @@
private:
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxExtraAddressTextCtrl)
};
@@ -552,4 +560,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxRcptExpandButton)
};
@@ -582,4 +591,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxRcptAddButton)
};
@@ -613,4 +623,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxRcptRemoveButton)
};
Index: wxDialogLayout.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxDialogLayout.cpp,v
retrieving revision 1.96
retrieving revision 1.97
diff -b -u -2 -r1.96 -r1.97
--- wxDialogLayout.cpp 30 Apr 2003 00:12:51 -0000 1.96
+++ wxDialogLayout.cpp 22 Jul 2003 22:01:40 -0000 1.97
@@ -102,4 +102,7 @@
virtual bool Layout() { return wxScrolledWindow::Layout(); }
+
+private:
+ DECLARE_NO_COPY_CLASS(wxEnhScrolledWindow)
};
@@ -1038,5 +1041,5 @@
// ----------------------------------------------------------------------------
-void wxNotebookPageBase::OnChange(wxEvent& event)
+void wxNotebookPageBase::OnChange(wxEvent& /* event */)
{
wxOptionsEditDialog *dlg = GET_PARENT_OF_CLASS(this, wxOptionsEditDialog);
Index: wxFiltersDialog.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxFiltersDialog.cpp,v
retrieving revision 1.106
retrieving revision 1.107
diff -b -u -2 -r1.106 -r1.107
--- wxFiltersDialog.cpp 2 Apr 2003 23:53:44 -0000 1.106
+++ wxFiltersDialog.cpp 22 Jul 2003 22:01:40 -0000 1.107
@@ -368,6 +368,6 @@
void OnText(wxCommandEvent& event);
- void OnChoice(wxCommandEvent& event) { UpdateProgram(); }
- void OnCheckBox(wxCommandEvent& event) { UpdateProgram(); }
+ void OnChoice(wxCommandEvent&) { UpdateProgram(); }
+ void OnCheckBox(wxCommandEvent&) { UpdateProgram(); }
protected:
@@ -412,5 +412,5 @@
private:
- DECLARE_DYNAMIC_CLASS(wxOneFilterDialog)
+ DECLARE_DYNAMIC_CLASS_NO_COPY(wxOneFilterDialog)
DECLARE_EVENT_TABLE()
};
@@ -453,4 +453,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(CritDetailsButton)
};
@@ -927,5 +928,5 @@
void
-OneCritControl::InitSpamOptions(const String& rule)
+OneCritControl::InitSpamOptions(const String& /* rule */)
{
CHECK_RET( m_Argument, _T("no argument control in the spam test?") );
@@ -1558,5 +1559,5 @@
void
-wxOneFilterDialog::OnProgramTextUpdate(wxCommandEvent& event)
+wxOneFilterDialog::OnProgramTextUpdate(wxCommandEvent& /* event */)
{
// catches the case of SetValue() from TransferDataToWindow()
@@ -1763,4 +1764,5 @@
private:
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxAllFiltersDialog)
};
@@ -1877,5 +1879,5 @@
void
-wxAllFiltersDialog::OnAddFiter(wxCommandEvent &event)
+wxAllFiltersDialog::OnAddFiter(wxCommandEvent& /* event */)
{
String name = CreateNewFilter(this);
@@ -1925,5 +1927,5 @@
void
-wxAllFiltersDialog::OnCopyFiter(wxCommandEvent &event)
+wxAllFiltersDialog::OnCopyFiter(wxCommandEvent& /* event */)
{
wxString name = m_lboxFilters->GetStringSelection();
@@ -1955,5 +1957,5 @@
void
-wxAllFiltersDialog::OnEditFiter(wxCommandEvent &event)
+wxAllFiltersDialog::OnEditFiter(wxCommandEvent& /* event */)
{
String name = m_lboxFilters->GetStringSelection();
@@ -2006,5 +2008,5 @@
void
-wxAllFiltersDialog::OnRenameFiter(wxCommandEvent &event)
+wxAllFiltersDialog::OnRenameFiter(wxCommandEvent& /* event */)
{
wxString name = m_lboxFilters->GetStringSelection();
@@ -2047,5 +2049,5 @@
void
-wxAllFiltersDialog::OnDeleteFiter(wxCommandEvent &event)
+wxAllFiltersDialog::OnDeleteFiter(wxCommandEvent& /* event */)
{
String name = m_lboxFilters->GetStringSelection();
@@ -2199,4 +2201,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxFolderFiltersDialog)
};
@@ -2462,4 +2465,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxQuickFilterDialog)
};
Index: wxFolderMenu.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxFolderMenu.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -b -u -2 -r1.9 -r1.10
--- wxFolderMenu.cpp 8 Sep 2002 19:23:09 -0000 1.9
+++ wxFolderMenu.cpp 22 Jul 2003 22:01:40 -0000 1.10
@@ -83,5 +83,5 @@
// base class generic event handler
- virtual bool OnMEvent(MEventData& data)
+ virtual bool OnMEvent(MEventData& /* data */)
{
OnFolderTreeChangeEvent();
Index: wxFolderTree.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxFolderTree.cpp,v
retrieving revision 1.209
retrieving revision 1.210
diff -b -u -2 -r1.209 -r1.210
--- wxFolderTree.cpp 30 Apr 2003 00:17:16 -0000 1.209
+++ wxFolderTree.cpp 22 Jul 2003 22:01:40 -0000 1.210
@@ -509,4 +509,7 @@
Append(Properties, _("&Properties"));
}
+
+ private:
+ DECLARE_NO_COPY_CLASS(FolderMenu)
} *m_menuRoot, // popup menu for the root folder
*m_menu; // popup menu for all folders
@@ -578,4 +581,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxFolderTreeImpl)
};
@@ -682,4 +686,6 @@
private:
MFolder *m_folderLast;
+
+ DECLARE_NO_COPY_CLASS(TreeDropTarget)
};
Index: wxFolderView.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxFolderView.cpp,v
retrieving revision 1.638
retrieving revision 1.639
diff -b -u -2 -r1.638 -r1.639
--- wxFolderView.cpp 20 Jul 2003 00:35:00 -0000 1.638
+++ wxFolderView.cpp 22 Jul 2003 22:01:40 -0000 1.639
@@ -264,5 +264,5 @@
virtual bool Expand(const String& category,
const String& Name,
- const wxArrayString& arguments,
+ const wxArrayString& /* arguments */,
String *value) const
{
@@ -372,4 +372,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxFolderMsgWindow)
};
@@ -392,4 +393,5 @@
private:
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxFolderMsgViewerEvtHandler)
};
@@ -752,4 +754,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxFolderListCtrl)
};
@@ -788,5 +791,5 @@
}
- virtual MFolder *GetFolder(wxCoord x, wxCoord y) const
+ virtual MFolder *GetFolder(wxCoord /* x */, wxCoord /* y */) const
{
// we don't even use the position of the drop
@@ -818,4 +821,7 @@
{
}
+
+private:
+ DECLARE_NO_COPY_CLASS(wxFolderSplitterWindow)
};
@@ -1270,5 +1276,5 @@
// ----------------------------------------------------------------------------
-void wxFolderMsgWindow::OnSize(wxSizeEvent& event)
+void wxFolderMsgWindow::OnSize(wxSizeEvent& /* event */)
{
if ( m_winViewer )
@@ -1278,5 +1284,5 @@
}
-void wxFolderMsgWindow::OnButton(wxCommandEvent& event)
+void wxFolderMsgWindow::OnButton(wxCommandEvent& /* event */)
{
MDialog_Message
@@ -2067,5 +2073,5 @@
}
-void wxFolderListCtrl::OnPreviewTimer(wxTimerEvent& event)
+void wxFolderListCtrl::OnPreviewTimer(wxTimerEvent& /* event */)
{
// preview timer expirer, do we still have the message we wanted to preview
@@ -2943,5 +2949,5 @@
}
-int wxFolderListCtrl::OnGetItemImage(long item) const
+int wxFolderListCtrl::OnGetItemImage(long /* item */) const
{
return -1;
@@ -3516,5 +3522,5 @@
void
-wxFolderView::OnOptionsChange(MEventOptionsChangeData& event)
+wxFolderView::OnOptionsChange(MEventOptionsChangeData& /* event */)
{
AllProfileSettings settings;
Index: wxHeadersDialogs.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxHeadersDialogs.cpp,v
retrieving revision 1.39
retrieving revision 1.40
diff -b -u -2 -r1.39 -r1.40
--- wxHeadersDialogs.cpp 19 Jul 2003 23:20:56 -0000 1.39
+++ wxHeadersDialogs.cpp 22 Jul 2003 22:01:41 -0000 1.40
@@ -163,4 +163,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxComposeHeadersDialog)
};
@@ -179,4 +180,6 @@
private:
Profile *m_profile;
+
+ DECLARE_NO_COPY_CLASS(wxMsgViewHeadersDialog)
};
@@ -230,4 +233,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxCustomHeaderDialog)
};
@@ -298,4 +302,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxCustomHeadersDialog)
};
@@ -440,5 +445,5 @@
}
-void wxComposeHeadersDialog::OnEditCustomHeaders(wxCommandEvent& event)
+void wxComposeHeadersDialog::OnEditCustomHeaders(wxCommandEvent& /* event */)
{
wxCustomHeadersDialog dlg(m_profile, GetParent());
Index: wxIconManager.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxIconManager.cpp,v
retrieving revision 1.97
retrieving revision 1.98
diff -b -u -2 -r1.97 -r1.98
--- wxIconManager.cpp 20 Jul 2003 17:13:41 -0000 1.97
+++ wxIconManager.cpp 22 Jul 2003 22:01:41 -0000 1.98
@@ -636,4 +636,6 @@
if ( fileType->GetIcon(&iconLoc) )
{
+ wxLogNull noLog;
+
icon = wxIcon(iconLoc);
}
@@ -668,4 +670,6 @@
if ( fileType->GetIcon(&iconLoc) )
{
+ wxLogNull noLog;
+
icon = wxIcon(iconLoc);
}
Index: wxMApp.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxMApp.cpp,v
retrieving revision 1.262
retrieving revision 1.263
diff -b -u -2 -r1.262 -r1.263
--- wxMApp.cpp 19 Jul 2003 23:37:23 -0000 1.262
+++ wxMApp.cpp 22 Jul 2003 22:01:41 -0000 1.263
@@ -200,4 +200,6 @@
private:
bool m_hasWindow;
+
+ DECLARE_NO_COPY_CLASS(wxMLogWindow)
};
@@ -209,4 +211,7 @@
virtual ~MLogFile() { fclose(m_fp); }
+
+private:
+ DECLARE_NO_COPY_CLASS(MLogFile)
};
@@ -232,4 +237,7 @@
public:
bool m_started;
+
+private:
+ DECLARE_NO_COPY_CLASS(AutoSaveTimer)
};
@@ -238,5 +246,10 @@
{
public:
+ MailCollectionTimer() { }
+
virtual void Notify();
+
+private:
+ DECLARE_NO_COPY_CLASS(MailCollectionTimer)
};
@@ -249,4 +262,7 @@
virtual void Notify() { wxWakeUpIdle(); }
+
+private:
+ DECLARE_NO_COPY_CLASS(IdleTimer)
};
@@ -255,4 +271,6 @@
{
public:
+ AwayTimer() { }
+
virtual void Notify()
{
@@ -261,4 +279,7 @@
mApplication->SetAwayMode(TRUE);
}
+
+private:
+ DECLARE_NO_COPY_CLASS(AwayTimer)
};
@@ -1376,4 +1397,7 @@
// under Windows only help contents can be currently shown
m_HelpController->DisplayContents();
+
+ id;
+ parent;
#else // !OS_WIN
switch(id)
@@ -1653,4 +1677,5 @@
wxMApp::GetStdIcon(int which) const
{
+#ifndef OS_WIN
// this function may be (and is) called from the persistent controls code
// which uses the global config object for its own needs, so avoid changing
@@ -1678,8 +1703,4 @@
// Set our icons for the dialogs.
-
- // this ugly "#ifdefs" are needed to silent warning about "switch without
- // any case" warning under Windows
-#ifndef OS_WIN
switch(which)
{
@@ -1693,4 +1714,6 @@
return ICON("msg_info"); break;
}
+#else
+ which;
#endif
@@ -1751,5 +1774,5 @@
void
-wxMApp::OnConnected(wxDialUpEvent &event)
+wxMApp::OnConnected(wxDialUpEvent&)
{
if(! m_DialupSupport)
@@ -1764,5 +1787,5 @@
void
-wxMApp::OnDisconnected(wxDialUpEvent &event)
+wxMApp::OnDisconnected(wxDialUpEvent&)
{
if(! m_DialupSupport)
@@ -1904,5 +1927,5 @@
void
-wxMApp::FatalError(const char *message)
+wxMApp::FatalError(const char * /* message */)
{
OnAbnormalTermination();
@@ -2335,4 +2358,6 @@
private:
char m_buffer[4096];
+
+ DECLARE_NO_COPY_CLASS(MAppIPCConnection)
};
Index: wxMDialogs.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxMDialogs.cpp,v
retrieving revision 1.394
retrieving revision 1.395
diff -b -u -2 -r1.394 -r1.395
--- wxMDialogs.cpp 22 Jul 2003 12:07:38 -0000 1.394
+++ wxMDialogs.cpp 22 Jul 2003 22:01:41 -0000 1.395
@@ -251,5 +251,7 @@
wxPTextEntry *m_text;
wxTextCtrl *m_passwd; // used if we ask for a password, NULL otherwise
+
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(MTextInputDialog)
};
@@ -291,4 +293,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(MFolderDialog)
};
@@ -947,4 +950,6 @@
private:
wxAboutWindow *m_window;
+
+ DECLARE_NO_COPY_CLASS(SplashCloseTimer)
};
@@ -985,4 +990,6 @@
private:
SplashCloseTimer *m_pTimer;
+
+ DECLARE_NO_COPY_CLASS(wxAboutWindow)
};
@@ -1012,4 +1019,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxAboutFrame)
};
@@ -1044,5 +1052,7 @@
private:
wxAboutWindow *m_window;
+
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(MyHtmlWindow)
};
@@ -1595,4 +1605,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxDateTextCtrl)
};
@@ -1620,5 +1631,5 @@
// event handlers
- void OnUpdate(wxCommandEvent& event) { UpdateExample(); }
+ void OnUpdate(wxCommandEvent& /* event */) { UpdateExample(); }
protected:
@@ -1636,4 +1647,6 @@
private:
wxDateFmtDialog *m_dialog;
+
+ DECLARE_NO_COPY_CLASS(ExampleUpdateTimer)
} *m_timer;
@@ -1649,4 +1662,5 @@
private:
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxDateFmtDialog)
};
@@ -1835,5 +1849,7 @@
wxCheckBox *m_Checkbox;
bool m_Changed;
+
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxXFaceDialog)
};
@@ -2033,4 +2049,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxGlobalPasswdDialog)
};
@@ -2039,5 +2056,5 @@
END_EVENT_TABLE()
-void wxGlobalPasswdDialog::OnUpdateUI(wxUpdateUIEvent& event)
+void wxGlobalPasswdDialog::OnUpdateUI(wxUpdateUIEvent& /* event */)
{
DoUpdateUI();
@@ -2309,4 +2326,6 @@
wxArrayInt m_selections;
wxListCtrl *m_listctrl;
+
+ DECLARE_NO_COPY_CLASS(ReenableDialog)
};
@@ -2555,4 +2574,7 @@
public:
wxLicenseDialog(Profile *profile, wxWindow *parent);
+
+private:
+ DECLARE_NO_COPY_CLASS(wxLicenseDialog)
};
@@ -2646,4 +2668,6 @@
wxCheckListBox *m_checklstbox;
+
+ DECLARE_NO_COPY_CLASS(wxMultipleChoiceDialog)
};
@@ -3039,4 +3063,6 @@
// the index of the control on which Append() was called in the array above
static int ms_indexOfAppend;
+
+ DECLARE_NO_COPY_CLASS(wxIdentCombo)
};
@@ -3181,4 +3207,6 @@
wxString *m_value1,
*m_value2;
+
+ DECLARE_NO_COPY_CLASS(MText2Dialog)
};
@@ -3319,4 +3347,5 @@
private:
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(MPasswordDialog)
};
@@ -3361,4 +3390,7 @@
{
}
+
+private:
+ DECLARE_NO_COPY_CLASS(MFolderPasswordDialog)
};
@@ -3397,4 +3429,7 @@
{
}
+
+private:
+ DECLARE_NO_COPY_CLASS(MSendPasswordDialog)
};
Index: wxMFolderDialogs.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxMFolderDialogs.cpp,v
retrieving revision 1.178
retrieving revision 1.179
diff -b -u -2 -r1.178 -r1.179
--- wxMFolderDialogs.cpp 30 Apr 2003 00:17:16 -0000 1.178
+++ wxMFolderDialogs.cpp 22 Jul 2003 22:01:41 -0000 1.179
@@ -236,5 +236,5 @@
private:
- DECLARE_DYNAMIC_CLASS(wxFolderBaseDialog)
+ DECLARE_DYNAMIC_CLASS_NO_COPY(wxFolderBaseDialog)
};
@@ -253,5 +253,5 @@
private:
- DECLARE_DYNAMIC_CLASS(wxFolderPropertiesDialog)
+ DECLARE_DYNAMIC_CLASS_NO_COPY(wxFolderPropertiesDialog)
};
@@ -284,5 +284,5 @@
int m_nameModifiedByUser;
- DECLARE_DYNAMIC_CLASS(wxFolderCreateDialog)
+ DECLARE_DYNAMIC_CLASS_NO_COPY(wxFolderCreateDialog)
DECLARE_EVENT_TABLE()
};
@@ -540,4 +540,5 @@
private:
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxFolderPropertiesPage)
};
@@ -553,4 +554,7 @@
wxFolderCreateNotebook(wxWindow *parent, wxFolderCreateDialog *dlg = NULL);
+
+private:
+ DECLARE_NO_COPY_CLASS(wxFolderCreateNotebook)
};
@@ -572,4 +576,6 @@
wxFolderBaseDialog *m_dlg;
+
+ DECLARE_NO_COPY_CLASS(wxFolderIconBrowseButtonInDialog)
};
@@ -1475,5 +1481,5 @@
void
-wxFolderPropertiesPage::EnableControlsForFileFolder(MFolderType folderType)
+wxFolderPropertiesPage::EnableControlsForFileFolder(MFolderType /* type */)
{
EnableTextWithLabel(m_mailboxname, FALSE);
Index: wxMainFrame.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxMainFrame.cpp,v
retrieving revision 1.166
retrieving revision 1.167
diff -b -u -2 -r1.166 -r1.167
--- wxMainFrame.cpp 21 Jul 2003 00:21:53 -0000 1.166
+++ wxMainFrame.cpp 22 Jul 2003 22:01:41 -0000 1.167
@@ -183,5 +183,5 @@
}
- virtual bool MoveToNextUnread(bool takeNextIfNoUnread = true)
+ virtual bool MoveToNextUnread(bool /* takeNextIfNoUnread */ = true)
{
if ( wxFolderView::MoveToNextUnread(false /* don't take next */) )
Index: wxMessageView.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxMessageView.cpp,v
retrieving revision 1.289
retrieving revision 1.290
diff -b -u -2 -r1.289 -r1.290
--- wxMessageView.cpp 19 Jan 2003 01:31:31 -0000 1.289
+++ wxMessageView.cpp 22 Jul 2003 22:01:41 -0000 1.290
@@ -94,5 +94,5 @@
virtual bool Expand(const String& category,
const String& Name,
- const wxArrayString& arguments,
+ const wxArrayString& /* arguments */,
String *value) const
{
@@ -137,5 +137,5 @@
DummyViewer() { }
- virtual void Create(MessageView *msgView, wxWindow *parent)
+ virtual void Create(MessageView * /* msgView */, wxWindow *parent)
{
m_window = new wxStaticText(parent, -1, _("\n\nNo message"),
@@ -150,5 +150,5 @@
virtual wxWindow *GetWindow() const { return m_window; }
- virtual bool Find(const String& text) { return false; }
+ virtual bool Find(const String& /* text */) { return false; }
virtual bool FindAgain() { return false; }
virtual String GetSelection() const { return ""; }
@@ -159,12 +159,12 @@
// header showing
virtual void StartHeaders() { }
- virtual void ShowRawHeaders(const String& header) { }
- virtual void ShowHeaderName(const String& name) { }
- virtual void ShowHeaderValue(const String& value,
- wxFontEncoding encoding) { }
- virtual void ShowHeaderURL(const String& text,
- const String& url) { }
+ virtual void ShowRawHeaders(const String& /* header */) { }
+ virtual void ShowHeaderName(const String& /* name */) { }
+ virtual void ShowHeaderValue(const String& /* value */,
+ wxFontEncoding /* encoding */) { }
+ virtual void ShowHeaderURL(const String& /* text */,
+ const String& /* url */) { }
virtual void EndHeader() { }
- virtual void ShowXFace(const wxBitmap& bitmap) { }
+ virtual void ShowXFace(const wxBitmap& /* bitmap */) { }
virtual void EndHeaders() { }
@@ -172,12 +172,16 @@
virtual void StartBody() { }
virtual void StartPart() { }
- virtual void InsertAttachment(const wxBitmap& icon, ClickableInfo *ci) { }
- virtual void InsertClickable(const wxBitmap& icon,
- ClickableInfo *ci,
- const wxColour& col) { }
- virtual void InsertImage(const wxImage& image, ClickableInfo *ci) { }
- virtual void InsertRawContents(const String& data) { }
- virtual void InsertText(const String& text, const MTextStyle& style) { }
- virtual void InsertURL(const String& text, const String& url) { }
+ virtual void InsertAttachment(const wxBitmap& /* icon */,
+ ClickableInfo * /* ci */) { }
+ virtual void InsertClickable(const wxBitmap& /* icon */,
+ ClickableInfo * /* ci */,
+ const wxColour& /* col */) { }
+ virtual void InsertImage(const wxImage& /* image */,
+ ClickableInfo * /* ci */) { }
+ virtual void InsertRawContents(const String& /* data */) { }
+ virtual void InsertText(const String& /* text */,
+ const MTextStyle& /* style */) { }
+ virtual void InsertURL(const String& /* text */,
+ const String& /* url */) { }
virtual void EndText() { }
virtual void EndPart() { }
@@ -192,5 +196,5 @@
// capabilities querying
virtual bool CanInlineImages() const { return false; }
- virtual bool CanProcess(const String& mimetype) const { return false; }
+ virtual bool CanProcess(const String& /* mimetype */) const { return false; }
private:
Index: wxModulesDlg.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxModulesDlg.cpp,v
retrieving revision 1.24
retrieving revision 1.25
diff -b -u -2 -r1.24 -r1.25
--- wxModulesDlg.cpp 8 Oct 2002 15:22:07 -0000 1.24
+++ wxModulesDlg.cpp 22 Jul 2003 22:01:41 -0000 1.25
@@ -71,5 +71,7 @@
wxTextCtrl *m_textCtrl;
kbStringList::iterator FindInList(const wxString &module) const;
+
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxModulesDialog)
};
Index: wxMsgCmdProc.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxMsgCmdProc.cpp,v
retrieving revision 1.40
retrieving revision 1.41
diff -b -u -2 -r1.40 -r1.41
--- wxMsgCmdProc.cpp 8 Apr 2003 15:04:25 -0000 1.40
+++ wxMsgCmdProc.cpp 22 Jul 2003 22:01:41 -0000 1.41
@@ -325,4 +325,6 @@
private:
void InitImageLists();
+
+ DECLARE_NO_COPY_CLASS(wxMIMETreeCtrl)
};
@@ -364,4 +366,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxMIMETreeDialog)
};
@@ -1108,5 +1111,6 @@
void
-MsgCmdProcImpl::PrintOrPreviewMessages(const UIdArray& selections, bool view)
+MsgCmdProcImpl::PrintOrPreviewMessages(const UIdArray& /* selections */,
+ bool view)
{
// this doesn't work because ShowMessage() is async and so the message is not
Index: wxOptionsDlg.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxOptionsDlg.cpp,v
retrieving revision 1.374
retrieving revision 1.375
diff -b -u -2 -r1.374 -r1.375
--- wxOptionsDlg.cpp 21 Jul 2003 01:00:52 -0000 1.374
+++ wxOptionsDlg.cpp 22 Jul 2003 22:01:41 -0000 1.375
@@ -587,4 +587,7 @@
// the profile we use - just the global one here
Profile *GetProfile() const { return Profile::CreateProfile(""); }
+
+private:
+ DECLARE_NO_COPY_CLASS(wxOptionsNotebook)
};
@@ -607,4 +610,6 @@
// the images names and NULL
const char **m_aImages;
+
+ DECLARE_NO_COPY_CLASS(wxCustomOptionsNotebook)
};
@@ -639,5 +644,5 @@
private:
- DECLARE_DYNAMIC_CLASS(wxGlobalOptionsDialog)
+ DECLARE_DYNAMIC_CLASS_NO_COPY(wxGlobalOptionsDialog)
};
@@ -714,4 +719,6 @@
// the config key where notebook will remember its last page
wxString m_configForNotebook;
+
+ DECLARE_NO_COPY_CLASS(wxCustomOptionsDialog)
};
@@ -763,4 +770,6 @@
size_t m_nPages;
wxOptionsPageDesc *m_aPages;
+
+ DECLARE_NO_COPY_CLASS(wxIdentityOptionsDialog)
};
@@ -777,4 +786,6 @@
private:
wxCheckListBox *m_checklistBox;
+
+ DECLARE_NO_COPY_CLASS(wxRestoreDefaultsDialog)
};
@@ -2908,5 +2919,5 @@
bool
-wxOptionsPage::OnListBoxDelete(wxListBox *lbox, const LboxData& lboxData)
+wxOptionsPage::OnListBoxDelete(wxListBox *lbox, const LboxData& /* lboxData */)
{
int nSel = lbox->GetSelection();
Index: wxRenameDialog.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxRenameDialog.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -b -u -2 -r1.6 -r1.7
--- wxRenameDialog.cpp 8 Sep 2002 19:23:10 -0000 1.6
+++ wxRenameDialog.cpp 22 Jul 2003 22:01:41 -0000 1.7
@@ -101,4 +101,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxFolderRenameDialog)
};
Index: wxSearchDialog.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxSearchDialog.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -b -u -2 -r1.6 -r1.7
--- wxSearchDialog.cpp 19 Jul 2003 23:24:55 -0000 1.6
+++ wxSearchDialog.cpp 22 Jul 2003 22:01:41 -0000 1.7
@@ -110,4 +110,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxMessageSearchDialog)
};
@@ -330,5 +331,5 @@
}
-void wxMessageSearchDialog::OnButtonAdd(wxCommandEvent& event)
+void wxMessageSearchDialog::OnButtonAdd(wxCommandEvent& /* event */)
{
MFolder_obj folder = MDialog_FolderChoose(this, NULL, MDlg_Folder_NoFiles);
@@ -339,5 +340,5 @@
}
-void wxMessageSearchDialog::OnButtonRemove(wxCommandEvent& event)
+void wxMessageSearchDialog::OnButtonRemove(wxCommandEvent& /* event */)
{
int sel = m_lboxFolders->GetSelection();
Index: wxSortDialog.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxSortDialog.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -b -u -2 -r1.11 -r1.12
--- wxSortDialog.cpp 19 Jul 2003 23:23:14 -0000 1.11
+++ wxSortDialog.cpp 22 Jul 2003 22:01:41 -0000 1.12
@@ -108,4 +108,6 @@
m_UseServerSort;
long m_SortOrder;
+
+ DECLARE_NO_COPY_CLASS(wxMessageSortingDialog)
};
Index: wxSubfoldersDialog.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxSubfoldersDialog.cpp,v
retrieving revision 1.71
retrieving revision 1.72
diff -b -u -2 -r1.71 -r1.72
--- wxSubfoldersDialog.cpp 30 Jan 2003 16:17:03 -0000 1.71
+++ wxSubfoldersDialog.cpp 22 Jul 2003 22:01:41 -0000 1.72
@@ -169,4 +169,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxSubfoldersTree)
};
@@ -233,4 +234,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxSubscriptionDialog)
};
@@ -255,4 +257,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxFolderNameTextCtrl)
};
Index: wxTemplateDialog.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxTemplateDialog.cpp,v
retrieving revision 1.29
retrieving revision 1.30
diff -b -u -2 -r1.29 -r1.30
--- wxTemplateDialog.cpp 19 Jul 2003 23:28:29 -0000 1.29
+++ wxTemplateDialog.cpp 22 Jul 2003 22:01:41 -0000 1.30
@@ -109,4 +109,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(TemplateEditor)
};
@@ -143,4 +144,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxFolderTemplatesDialog)
};
@@ -202,4 +204,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxAllTemplatesDialog)
};
@@ -771,5 +774,5 @@
}
-void wxAllTemplatesDialog::OnListboxSelection(wxCommandEvent& event)
+void wxAllTemplatesDialog::OnListboxSelection(wxCommandEvent& /* event */)
{
CheckForChanges();
@@ -778,5 +781,5 @@
}
-void wxAllTemplatesDialog::OnDeleteTemplate(wxCommandEvent& event)
+void wxAllTemplatesDialog::OnDeleteTemplate(wxCommandEvent& /* event */)
{
wxASSERT_MSG( !!m_name, _T("shouldn't try to delete") );
@@ -798,5 +801,5 @@
}
-void wxAllTemplatesDialog::OnAddTemplate(wxCommandEvent& event)
+void wxAllTemplatesDialog::OnAddTemplate(wxCommandEvent& /* event */)
{
// get the name for the new template
Index: wxTextDialog.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxTextDialog.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -b -u -2 -r1.5 -r1.6
--- wxTextDialog.cpp 3 May 2003 12:28:56 -0000 1.5
+++ wxTextDialog.cpp 22 Jul 2003 22:01:41 -0000 1.6
@@ -99,4 +99,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(MTextDialog)
};
Index: wxThrDialog.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxThrDialog.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -b -u -2 -r1.5 -r1.6
--- wxThrDialog.cpp 23 Dec 2001 21:55:27 -0000 1.5
+++ wxThrDialog.cpp 22 Jul 2003 22:01:41 -0000 1.6
@@ -158,4 +158,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxMessageThreadingDialog)
};
Index: wxWizards.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxWizards.cpp,v
retrieving revision 1.41
retrieving revision 1.42
diff -b -u -2 -r1.41 -r1.42
--- wxWizards.cpp 29 Mar 2003 17:52:39 -0000 1.41
+++ wxWizards.cpp 22 Jul 2003 22:01:41 -0000 1.42
@@ -175,4 +175,6 @@
class MWizardPage * m_WizardPages[MWizard_PagesMax];
MWizardPageId m_First, m_Last;
+
+ DECLARE_NO_COPY_CLASS(MWizard)
};
@@ -229,4 +231,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(MWizardPage)
};
@@ -327,4 +330,6 @@
private:
Params m_params;
+
+ DECLARE_NO_COPY_CLASS(ImportFoldersWizard)
};
@@ -347,4 +352,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(MWizard_ImportFolders_ChoicePage)
};
@@ -412,5 +418,5 @@
}
-void MWizard_ImportFolders_ChoicePage::OnCheckBox(wxCommandEvent& event)
+void MWizard_ImportFolders_ChoicePage::OnCheckBox(wxCommandEvent&)
{
SetNextButtonLabel(GetNextPageId() == MWizard_PageNone);
@@ -436,4 +442,6 @@
wxTextCtrl *m_textTop;
wxCheckBox *m_checkAll;
+
+ DECLARE_NO_COPY_CLASS(MWizard_ImportFolders_MHPage)
};
@@ -571,4 +579,6 @@
// does the user want to use dialog instead of wizard?
bool m_wantsDialog;
+
+ DECLARE_NO_COPY_CLASS(CreateFolderWizard)
};
@@ -603,4 +613,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(MWizard_CreateFolder_WelcomePage)
};
@@ -652,5 +663,5 @@
}
-void MWizard_CreateFolder_WelcomePage::OnCheckbox(wxCommandEvent& event)
+void MWizard_CreateFolder_WelcomePage::OnCheckbox(wxCommandEvent&)
{
// if any of our checkboxes if checked, we close the wizard right after this
@@ -709,7 +720,11 @@
public:
MWizard_CreateFolder_TypePage(MWizard *wizard);
+
virtual MWizardPageId GetNextPageId() const;
+
private:
wxChoice *m_TypeCtrl;
+
+ DECLARE_NO_COPY_CLASS(MWizard_CreateFolder_TypePage)
};
@@ -821,4 +836,6 @@
FolderEntryType m_Type;
+
+ DECLARE_NO_COPY_CLASS(MWizard_CreateFolder_ServerPage)
};
@@ -1246,4 +1263,7 @@
FOLDERTYPE_##type2)\
{ } \
+ \
+private: \
+ DECLARE_NO_COPY_CLASS(MWizard_CreateFolder_##type##Page) \
}
@@ -1286,4 +1306,5 @@
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(MWizard_CreateFolder_NewMailPage)
};
@@ -1357,6 +1378,10 @@
public:
MWizard_CreateFolder_FinalPage(MWizard *wizard);
+
virtual MWizardPageId GetPreviousPageId() const;
virtual MWizardPageId GetNextPageId() const { return MWizard_PageNone; }
+
+private:
+ DECLARE_NO_COPY_CLASS(MWizard_CreateFolder_FinalPage)
};
Index: wxllist.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxllist.cpp,v
retrieving revision 1.153
retrieving revision 1.154
diff -b -u -2 -r1.153 -r1.154
--- wxllist.cpp 20 Jul 2003 17:13:11 -0000 1.153
+++ wxllist.cpp 22 Jul 2003 22:01:41 -0000 1.154
@@ -337,5 +337,5 @@
void
-wxLayoutObjectText::Layout(wxDC &dc, class wxLayoutList *llist)
+wxLayoutObjectText::Layout(wxDC &dc, class wxLayoutList * /* llist */)
{
long descent = 0l;
@@ -466,6 +466,6 @@
void
wxLayoutObjectIcon::Draw(wxDC &dc, wxPoint const &coords,
- wxLayoutList *wxllist,
- CoordType begin, CoordType /* len */)
+ wxLayoutList * /* wxllist */,
+ CoordType /* begin */, CoordType /* len */)
{
dc.DrawBitmap(*m_Icon, coords.x, coords.y-m_Icon->GetHeight(),
@@ -700,5 +700,5 @@
wxLayoutObjectCmd::Draw(wxDC &dc, wxPoint const & /* coords */,
wxLayoutList *wxllist,
- CoordType begin, CoordType /* len */)
+ CoordType /* begin */, CoordType /* len */)
{
wxASSERT(m_StyleInfo);
@@ -1172,5 +1172,5 @@
wxLayoutStyleInfo *cursorStyle,
int cx,
- bool suppressSIupdate)
+ bool /* suppressSIupdate */)
{
wxLayoutObjectList::iterator i;
@@ -2749,4 +2749,7 @@
#ifdef WXLAYOUT_USE_CARET
m_caret->Move(coords);
+
+ dc;
+ active;
#else // !WXLAYOUT_USE_CARET
@@ -3235,4 +3238,6 @@
private:
Profile *m_profile;
+
+ DECLARE_NO_COPY_CLASS(wxMVPreview)
};
Index: wxlwindow.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxlwindow.cpp,v
retrieving revision 1.137
retrieving revision 1.138
diff -b -u -2 -r1.137 -r1.138
--- wxlwindow.cpp 30 Jan 2003 16:17:04 -0000 1.137
+++ wxlwindow.cpp 22 Jul 2003 22:01:41 -0000 1.138
@@ -919,5 +919,5 @@
void
-wxLayoutWindow::RequestUpdate(const wxRect *updateRect)
+wxLayoutWindow::RequestUpdate(const wxRect * /* updateRect */)
{
m_needsRedraw = true;
@@ -1367,5 +1367,5 @@
wxLayoutWindow::Find(const wxString &needle,
wxPoint * fromWhere,
- const wxString &configPath)
+ const wxString& /* configPath */)
{
m_FindString = needle;
-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the
same time. Free trial click here: http://www.vmware.com/wl/offer/345/0
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates