]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/help.cpp
Remove Palm OS port.
[wxWidgets.git] / src / palmos / help.cpp
diff --git a/src/palmos/help.cpp b/src/palmos/help.cpp
deleted file mode 100644 (file)
index e2af8e1..0000000
+++ /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