Update of /cvsroot/mahogany/M/src/adb
In directory sc8-pr-cvs1:/tmp/cvs-serv20702/src/adb
Modified Files:
ProvLine.cpp
Log Message:
unused parameters warnings fixed
Index: ProvLine.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/adb/ProvLine.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -u -2 -r1.1 -r1.2
--- ProvLine.cpp 22 Aug 2003 09:53:42 -0000 1.1
+++ ProvLine.cpp 30 Aug 2003 10:50:54 -0000 1.2
@@ -70,9 +70,9 @@
{ names.Empty(); return 0; }
- virtual AdbEntryGroup *GetGroup(const String& name) const
+ virtual AdbEntryGroup *GetGroup(const String&) const
{ FAIL_MSG( _T("LineBook::GetGroup was called.") ); return NULL; }
virtual AdbEntry *CreateEntry(const String& name);
- virtual AdbEntryGroup *CreateGroup(const String& name)
+ virtual AdbEntryGroup *CreateGroup(const String&)
{
FAIL_MSG(
@@ -82,5 +82,5 @@
virtual void DeleteEntry(const String& name);
- virtual void DeleteGroup(const String& name)
+ virtual void DeleteGroup(const String&)
{ FAIL_MSG( _T("LineBook::DeleteGroup was called.") ); }
@@ -92,5 +92,5 @@
virtual String GetFileName() const { return m_file; }
- virtual void SetName(const String& name)
+ virtual void SetName(const String&)
{
FAIL_MSG( _T("Nobody asked LineBook whether it supports SetName.") );
@@ -98,5 +98,5 @@
virtual String GetName() const;
- virtual void SetDescription(const String& desc)
+ virtual void SetDescription(const String&)
{
FAIL_MSG(
@@ -150,5 +150,5 @@
virtual size_t GetEMailCount() const { return 0; }
- virtual void GetEMail(size_t n, String *pstr) const
+ virtual void GetEMail(size_t, String *) const
{ FAIL_MSG( _T("LineEntry::GetEMail was called.") ); }
@@ -157,5 +157,5 @@
virtual void SetField(size_t n, const String& strValue);
- virtual void AddEMail(const String& strEMail)
+ virtual void AddEMail(const String&)
{
FAIL_MSG( _T("Nobody asked LineBook whether it supports AddEMail.") );
@@ -185,5 +185,5 @@
// implement interface methods
virtual AdbBook *CreateBook(const String& name);
- virtual bool EnumBooks(wxArrayString& names) { return false; }
+ virtual bool EnumBooks(wxArrayString&) { return false; }
virtual bool DeleteBook(AdbBook *book);
virtual bool TestBookAccess(const String& name, AdbTests test);
@@ -484,5 +484,5 @@
}
-int LineEntry::Matches(const wxChar *what, int where, int how) const
+int LineEntry::Matches(const wxChar *what, int /* where */, int how) const
{
wxString whatCopy(what);
@@ -606,5 +606,5 @@
}
-bool LineDataProvider::DeleteBook(AdbBook *book)
+bool LineDataProvider::DeleteBook(AdbBook * /* book */)
{
// TODO
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates