X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/215ab2b53e4b6f4aa5b12785bb6430599c92c3c3..bd362275b853cc0308bbde6a60bb2525d659f709:/src/palmos/help.cpp diff --git a/src/palmos/help.cpp b/src/palmos/help.cpp deleted file mode 100644 index e2af8e10a6..0000000000 --- a/src/palmos/help.cpp +++ /dev/null @@ -1,77 +0,0 @@ -///////////////////////////////////////////////////////////////////////////// -// Name: src/palmos/help.cpp -// Purpose: Help system: WinHelp implementation -// Author: William Osborne - minimal working wxPalmOS port -// Modified by: -// Created: 10/13/04 -// RCS-ID: $Id$ -// Copyright: (c) William Osborne -// Licence: wxWindows licence -///////////////////////////////////////////////////////////////////////////// - -// For compilers that support precompilation, includes "wx.h". -#include "wx/wxprec.h" - -#ifdef __BORLANDC__ -#pragma hdrstop -#endif - -#if wxUSE_HELP - -#ifndef WX_PRECOMP -#endif - -#include "wx/filefn.h" - - -IMPLEMENT_DYNAMIC_CLASS(wxWinHelpController, wxHelpControllerBase) - -bool wxWinHelpController::Initialize(const wxString& filename) -{ - return false; -} - -bool wxWinHelpController::LoadFile(const wxString& file) -{ - return false; -} - -bool wxWinHelpController::DisplayContents(void) -{ - return false; -} - -bool wxWinHelpController::DisplaySection(int section) -{ - return false; -} - -bool wxWinHelpController::DisplayContextPopup(int contextId) -{ - return false; -} - -bool wxWinHelpController::DisplayBlock(long block) -{ - return false; -} - -bool wxWinHelpController::KeywordSearch(const wxString& k, - wxHelpSearchMode WXUNUSED(mode)) -{ - return false; -} - -bool wxWinHelpController::Quit(void) -{ - return false; -} - -wxString wxWinHelpController::GetValidFilename(const wxString& file) const -{ - wxString ret; - - return ret; -} - -#endif // wxUSE_HELP