projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
made declaration of WXDLL_ENTRY_FUNCTION match it definition
[wxWidgets.git]
/
src
/
html
/
helpctrl.cpp
diff --git
a/src/html/helpctrl.cpp
b/src/html/helpctrl.cpp
index 31a5df2dd6754da78967e07c0476a8a0a180080a..e513a50f6377ab715d480f71a6d3f0c2facf3a6b 100644
(file)
--- a/
src/html/helpctrl.cpp
+++ b/
src/html/helpctrl.cpp
@@
-20,12
+20,14
@@
#pragma hdrstop
#endif
#pragma hdrstop
#endif
-#i
nclude "wx/defs.h"
+#i
f wxUSE_WXHTML_HELP
-#if wxUSE_HTML && wxUSE_STREAMS
+#ifndef WX_PRECOMP
+ #include "wx/app.h"
+ #include "wx/intl.h"
+#endif // WX_PRECOMP
#include "wx/html/helpctrl.h"
#include "wx/html/helpctrl.h"
-#include "wx/wx.h"
#include "wx/busyinfo.h"
#if wxUSE_HELP
#include "wx/busyinfo.h"
#if wxUSE_HELP
@@
-83,7
+85,7
@@
bool wxHtmlHelpController::AddBook(const wxString& book, bool show_wait_msg)
#if wxUSE_BUSYINFO
wxBusyInfo* busy = NULL;
wxString info;
#if wxUSE_BUSYINFO
wxBusyInfo* busy = NULL;
wxString info;
- if (show_wait_msg)
+ if (show_wait_msg)
{
info.Printf(_("Adding book %s"), book.c_str());
busy = new wxBusyInfo(info);
{
info.Printf(_("Adding book %s"), book.c_str());
busy = new wxBusyInfo(info);
@@
-93,7
+95,7
@@
bool wxHtmlHelpController::AddBook(const wxString& book, bool show_wait_msg)
#if wxUSE_BUSYINFO
if (show_wait_msg)
delete busy;
#if wxUSE_BUSYINFO
if (show_wait_msg)
delete busy;
-#endif
+#endif
return retval;
}
return retval;
}
@@
-113,7
+115,7
@@
void wxHtmlHelpController::CreateHelpWindow()
return ;
}
return ;
}
- if (m_Config == NULL)
+ if (m_Config == NULL)
{
m_Config = wxConfigBase::Get(FALSE);
if (m_Config != NULL)
{
m_Config = wxConfigBase::Get(FALSE);
if (m_Config != NULL)
@@
-211,10
+213,8
@@
bool wxHtmlHelpController::DisplayTextPopup(const wxString& text, const wxPoint&
return TRUE;
}
return TRUE;
}
-
- return FALSE;
#endif
#endif
- return FALSE;
+ return FALSE;
}
void wxHtmlHelpController::SetFrameParameters(const wxString& title,
}
void wxHtmlHelpController::SetFrameParameters(const wxString& title,
@@
-248,5
+248,5
@@
bool wxHtmlHelpController::Quit()
return TRUE;
}
return TRUE;
}
+#endif // wxUSE_WXHTML_HELP
-#endif