View | Details | Raw Unified
Collapse All | Expand All

(-) wxWidgets-2.6.0-orig/contrib/src/stc/scintilla/include/KeyWords.h (+1 lines)
 Lines 29-34    Link Here 
	LexerModule(int language_, LexerFunction fnLexer_, 
	LexerModule(int language_, LexerFunction fnLexer_, 
		const char *languageName_=0, LexerFunction fnFolder_=0,
		const char *languageName_=0, LexerFunction fnFolder_=0,
		const char * const wordListDescriptions_[] = NULL);
		const char * const wordListDescriptions_[] = NULL);
	virtual ~LexerModule() {};
	int GetLanguage() const { return language; }
	int GetLanguage() const { return language; }
	// -1 is returned if no WordList information is available
	// -1 is returned if no WordList information is available
(-) wxWidgets-2.6.0-orig/contrib/src/stc/scintilla/src/Document.cxx (-1 / +2 lines)
 Lines 925-931    Link Here 
	DocumentIndexer(Document *pdoc_, int end_) :
	DocumentIndexer(Document *pdoc_, int end_) :
		pdoc(pdoc_), end(end_) {
		pdoc(pdoc_), end(end_) {
	}
	}
	virtual ~DocumentIndexer () {};
	
	virtual char CharAt(int index) {
	virtual char CharAt(int index) {
		if (index < 0 || index >= end)
		if (index < 0 || index >= end)
			return 0;
			return 0;
(-) wxWidgets-2.6.0-orig/contrib/src/stc/scintilla/src/ExternalLexer.h (+1 lines)
 Lines 38-43    Link Here 
		strncpy(name, languageName_, sizeof(name));
		strncpy(name, languageName_, sizeof(name));
		languageName = name;
		languageName = name;
	};
	};
	virtual ~ExternalLexerModule() {};
	virtual void Lex(unsigned int startPos, int lengthDoc, int initStyle,
	virtual void Lex(unsigned int startPos, int lengthDoc, int initStyle,
					WordList *keywordlists[], Accessor &styler) const;
					WordList *keywordlists[], Accessor &styler) const;
	virtual void Fold(unsigned int startPos, int lengthDoc, int initStyle,
	virtual void Fold(unsigned int startPos, int lengthDoc, int initStyle,
(-) wxWidgets-2.6.0-orig/contrib/src/stc/scintilla/src/RESearch.h (+1 lines)
 Lines 20-25    Link Here 
class CharacterIndexer {
class CharacterIndexer {
public: 
public: 
	virtual char CharAt(int index)=0;
	virtual char CharAt(int index)=0;
	virtual ~CharacterIndexer() {};
};
};
class RESearch {
class RESearch {
(-) wxWidgets-2.6.0-orig/include/wx/caret.h (-1 / +1 lines)
 Lines 62-68    Link Here 
    }
    }
    // a virtual dtor has been provided since this class has virtual members
    // a virtual dtor has been provided since this class has virtual members
    virtual ~wxCaretBase() { }
    virtual ~wxCaretBase() { };
    // Create() functions - same as ctor but returns the success code
    // Create() functions - same as ctor but returns the success code
    // --------------------------------------------------------------
    // --------------------------------------------------------------
(-) wxWidgets-2.6.0-orig/include/wx/clipbrd.h (-1 / +2 lines)
 Lines 39-45    Link Here 
class WXDLLEXPORT wxClipboardBase : public wxObject
class WXDLLEXPORT wxClipboardBase : public wxObject
{
{
public:
public:
    wxClipboardBase() {}
    wxClipboardBase() {};
	virtual ~wxClipboardBase() {};
    // open the clipboard before Add/SetData() and GetData()
    // open the clipboard before Add/SetData() and GetData()
    virtual bool Open() = 0;
    virtual bool Open() = 0;
(-) wxWidgets-2.6.0-orig/include/wx/datetime.h (-1 / +3 lines)
 Lines 1447-1453    Link Here 
{
{
friend class wxDateTimeHolidaysModule;
friend class wxDateTimeHolidaysModule;
public:
public:
    // returns true if the given date is a holiday
	// returns true if the given date is a holiday
    static bool IsHoliday(const wxDateTime& dt);
    static bool IsHoliday(const wxDateTime& dt);
    // fills the provided array with all holidays in the given range, returns
    // fills the provided array with all holidays in the given range, returns
 Lines 1490-1495    Link Here 
// the holidays for this class are all Saturdays and Sundays
// the holidays for this class are all Saturdays and Sundays
class WXDLLIMPEXP_BASE wxDateTimeWorkDays : public wxDateTimeHolidayAuthority
class WXDLLIMPEXP_BASE wxDateTimeWorkDays : public wxDateTimeHolidayAuthority
{
{
public:
	virtual ~wxDateTimeWorkDays() {};
protected:
protected:
    virtual bool DoIsHoliday(const wxDateTime& dt) const;
    virtual bool DoIsHoliday(const wxDateTime& dt) const;
    virtual size_t DoGetHolidaysInRange(const wxDateTime& dtStart,
    virtual size_t DoGetHolidaysInRange(const wxDateTime& dtStart,
(-) wxWidgets-2.6.0-orig/include/wx/dir.h (-1 / +1 lines)
 Lines 55-61    Link Here 
{
{
public:
public:
    /// a virtual dtor has been provided since this class has virtual members
    /// a virtual dtor has been provided since this class has virtual members
    virtual ~wxDirTraverser() { }
    virtual ~wxDirTraverser() { };
    // called for each file found by wxDir::Traverse()
    // called for each file found by wxDir::Traverse()
    //
    //
    // return wxDIR_STOP or wxDIR_CONTINUE from here (wxDIR_IGNORE doesn't
    // return wxDIR_STOP or wxDIR_CONTINUE from here (wxDIR_IGNORE doesn't
(-) wxWidgets-2.6.0-orig/include/wx/event.h (+1 lines)
 Lines 2174-2179    Link Here 
        : wxEventTableEntryBase(winid, idLast, fn, data),
        : wxEventTableEntryBase(winid, idLast, fn, data),
        m_eventType(evType)
        m_eventType(evType)
    { }
    { }
	virtual ~wxEventTableEntry() {};
    // the reference to event type: this allows us to not care about the
    // the reference to event type: this allows us to not care about the
    // (undefined) order in which the event table entries and the event types
    // (undefined) order in which the event table entries and the event types
(-) wxWidgets-2.6.0-orig/include/wx/geometry.h (-1 / +1 lines)
 Lines 785-791    Link Here 
class wxTransform2D
class wxTransform2D
{
{
public :
public :
    virtual ~wxTransform2D() { }
    virtual ~wxTransform2D() { };
    virtual void                    Transform( wxPoint2DInt* pt )const  = 0;
    virtual void                    Transform( wxPoint2DInt* pt )const  = 0;
    virtual void                    Transform( wxRect2DInt* r ) const;
    virtual void                    Transform( wxRect2DInt* r ) const;
    virtual wxPoint2DInt    Transform( const wxPoint2DInt &pt ) const;
    virtual wxPoint2DInt    Transform( const wxPoint2DInt &pt ) const;
(-) wxWidgets-2.6.0-orig/include/wx/list.h (+2 lines)
 Lines 662-667    Link Here 
                 T *data = (T *)NULL,                                       \
                 T *data = (T *)NULL,                                       \
                 const wxListKey& key = wxDefaultListKey)                   \
                 const wxListKey& key = wxDefaultListKey)                   \
            : wxNodeBase(list, previous, next, data, key) { }               \
            : wxNodeBase(list, previous, next, data, key) { }               \
        virtual ~nodetype() {};                                             \
                                                                            \
                                                                            \
        nodetype *GetNext() const                                           \
        nodetype *GetNext() const                                           \
            { return (nodetype *)wxNodeBase::GetNext(); }                   \
            { return (nodetype *)wxNodeBase::GetNext(); }                   \
 Lines 694-699    Link Here 
                                                                            \
                                                                            \
        name& operator=(const name& list)                                   \
        name& operator=(const name& list)                                   \
            { Assign(list); return *this; }                                 \
            { Assign(list); return *this; }                                 \
        virtual ~name() {};                                                 \
                                                                            \
                                                                            \
        nodetype *GetFirst() const                                          \
        nodetype *GetFirst() const                                          \
            { return (nodetype *)wxListBase::GetFirst(); }                  \
            { return (nodetype *)wxListBase::GetFirst(); }                  \
(-) wxWidgets-2.6.0-orig/include/wx/notebook.h (-1 / +2 lines)
 Lines 118-124    Link Here 
        : wxBookCtrlBaseEvent(commandType, winid, nSel, nOldSel)
        : wxBookCtrlBaseEvent(commandType, winid, nSel, nOldSel)
    {
    {
    }
    }
	virtual ~wxNotebookEvent() {};
	
private:
private:
    DECLARE_DYNAMIC_CLASS_NO_COPY(wxNotebookEvent)
    DECLARE_DYNAMIC_CLASS_NO_COPY(wxNotebookEvent)
};
};
(-) wxWidgets-2.6.0-orig/include/wx/protocol/file.h (-1 / +1 lines)
 Lines 13-19    Link Here 
#define __WX_PROTO_FILE_H__
#define __WX_PROTO_FILE_H__
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "sckfile.h"
#pragma interface
#endif
#endif
#include "wx/defs.h"
#include "wx/defs.h"
(-) wxWidgets-2.6.0-orig/include/wx/radiobox.h (+1 lines)
 Lines 31-36    Link Here 
class WXDLLEXPORT wxRadioBoxBase : public wxItemContainerImmutable
class WXDLLEXPORT wxRadioBoxBase : public wxItemContainerImmutable
{
{
public:
public:
	virtual ~wxRadioBoxBase() {};
    // change the individual radio button state
    // change the individual radio button state
    virtual bool Enable(int n, bool enable = true) = 0;
    virtual bool Enable(int n, bool enable = true) = 0;
    virtual bool Show(int n, bool show = true) = 0;
    virtual bool Show(int n, bool show = true) = 0;
(-) wxWidgets-2.6.0-orig/include/wx/statline.h (+1 lines)
 Lines 39-44    Link Here 
public:
public:
    // constructor
    // constructor
    wxStaticLineBase() { }
    wxStaticLineBase() { }
	virtual ~wxStaticLineBase() {};
    // is the line vertical?
    // is the line vertical?
    bool IsVertical() const { return (GetWindowStyle() & wxLI_VERTICAL) != 0; }
    bool IsVertical() const { return (GetWindowStyle() & wxLI_VERTICAL) != 0; }
(-) wxWidgets-2.6.0-orig/src/common/dircmn.cpp (+1 lines)
 Lines 204-209    Link Here 
{
{
public:
public:
    wxDirTraverserSimple(wxArrayString& files) : m_files(files) { }
    wxDirTraverserSimple(wxArrayString& files) : m_files(files) { }
	virtual ~wxDirTraverserSimple() {};
    virtual wxDirTraverseResult OnFile(const wxString& filename)
    virtual wxDirTraverseResult OnFile(const wxString& filename)
    {
    {
(-) wxWidgets-2.6.0-orig/src/common/sckfile.cpp (-1 / +1 lines)
 Lines 9-15    Link Here 
// Licence:     wxWindows licence
// Licence:     wxWindows licence
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "sckfile.h"
#pragma implementation "file.h"
#endif
#endif
// For compilers that support precompilation, includes "wx.h".
// For compilers that support precompilation, includes "wx.h".
(-) wxWidgets-2.6.0-orig/src/expat/lib/xmlparse.c (+2 lines)
 Lines 299-306    Link Here 
static enum XML_Error
static enum XML_Error
doProlog(XML_Parser parser, const ENCODING *enc, const char *s,
doProlog(XML_Parser parser, const ENCODING *enc, const char *s,
         const char *end, int tok, const char *next, const char **nextPtr);
         const char *end, int tok, const char *next, const char **nextPtr);
#ifdef XML_DTD
static enum XML_Error
static enum XML_Error
processInternalParamEntity(XML_Parser parser, ENTITY *entity);
processInternalParamEntity(XML_Parser parser, ENTITY *entity);
#endif /* XML_DTD */
static enum XML_Error
static enum XML_Error
doContent(XML_Parser parser, int startTagLevel, const ENCODING *enc,
doContent(XML_Parser parser, int startTagLevel, const ENCODING *enc,
          const char *start, const char *end, const char **endPtr);
          const char *start, const char *end, const char **endPtr);
(-) wxWidgets-2.6.0-orig/src/unix/mimetype.cpp (-1 / +1 lines)
 Lines 1749-1755    Link Here 
    {
    {
        // now got a file we can write to ....
        // now got a file we can write to ....
        wxMimeTypeCommands * entries = m_aEntries[index];
        wxMimeTypeCommands * entries = m_aEntries[index];
        size_t iOpen;
        size_t iOpen = 0;
        wxString sCmd = entries->GetCommandForVerb(_T("open"), &iOpen);
        wxString sCmd = entries->GetCommandForVerb(_T("open"), &iOpen);
        wxString sTmp;
        wxString sTmp;
(-) wxWidgets-2.6.0-orig/src/xml/xml.cpp (-2 / +2 lines)
 Lines 360-367    Link Here 
#else
#else
    if ( conv )
    if ( conv )
    {
    {
        size_t nLen = (len != wxSTRING_MAXLEN) ? len :
        size_t nLen = ((len != wxSTRING_MAXLEN) ? len :
                          wxConvUTF8.MB2WC((wchar_t*) NULL, s, 0);
                          wxConvUTF8.MB2WC((wchar_t*) NULL, s, 0));
        wchar_t *buf = new wchar_t[nLen+1];
        wchar_t *buf = new wchar_t[nLen+1];
        wxConvUTF8.MB2WC(buf, s, nLen);
        wxConvUTF8.MB2WC(buf, s, nLen);