Changed a few #include <xxx.h> to #include "xxx.h"

Added endl operator to wxTextStream
  Corrrected a few misbehaviours in wxFileDialog,
  Corrected tab traversal a bit
  Corrected wxImage::SetData() to not copy, but take
    the data and care for ref couting as well


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3436 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-08-20 22:52:21 +00:00
parent 5586805bfa
commit ed58dbeab6
28 changed files with 135 additions and 136 deletions

View File

@@ -16,7 +16,7 @@
#pragma interface "datstrm.h"
#endif
#include <wx/stream.h>
#include "wx/stream.h"
#if wxUSE_STREAMS

View File

@@ -16,13 +16,13 @@
# pragma interface
#endif
#include <wx/setup.h>
#include "wx/setup.h"
#if wxUSE_DYNLIB_CLASS
#include <wx/string.h>
#include <wx/list.h>
#include <wx/hash.h>
#include "wx/string.h"
#include "wx/list.h"
#include "wx/hash.h"
// this is normally done by configure, but I leave it here for now...
#if defined(__UNIX__) && !(defined(HAVE_DLOPEN) || defined(HAVE_SHL_LOAD))

View File

@@ -16,7 +16,7 @@
#pragma interface "filefn.h"
#endif
#include <wx/list.h>
#include "wx/list.h"
// ----------------------------------------------------------------------------
// constants

View File

@@ -23,7 +23,7 @@ limitation)
#pragma implementation
#endif
#include <wx/wxprec.h>
#include "wx/wxprec.h"
#ifdef __BORDLANDC__
#pragma hdrstop
@@ -32,11 +32,10 @@ limitation)
#if wxUSE_FS_INET && wxUSE_STREAMS && wxUSE_SOCKETS
#ifndef WXPRECOMP
#include <wx/wx.h>
#include "wx/wx.h"
#endif
#include <wx/filesys.h>
#include "wx/filesys.h"
//--------------------------------------------------------------------------------

View File

@@ -11,7 +11,7 @@
#pragma implementation
#endif
#include <wx/wxprec.h>
#include "wx/wxprec.h"
#ifdef __BORDLANDC__
#pragma hdrstop
@@ -21,12 +21,10 @@
#ifndef WXPRECOMP
#include <wx/wx.h>
#include "wx/wx.h"
#endif
#include <wx/filesys.h>
#include "wx/filesys.h"
//--------------------------------------------------------------------------------
// wxZipFSHandler

View File

@@ -130,6 +130,9 @@ public:
void OnNavigationKey(wxNavigationKeyEvent& event);
// overridden from wxWindow to make tabbing work
void SetFocus();
// implementation
void SetConstraintSizes(bool recurse);

View File

@@ -130,6 +130,9 @@ public:
void OnNavigationKey(wxNavigationKeyEvent& event);
// overridden from wxWindow to make tabbing work
void SetFocus();
// implementation
void SetConstraintSizes(bool recurse);

View File

@@ -11,7 +11,7 @@
#ifndef _WX_WXMMSTREAM_H__
#define _WX_WXMMSTREAM_H__
#include <wx/stream.h>
#include "wx/stream.h"
#if wxUSE_STREAMS

View File

@@ -11,8 +11,8 @@
#ifndef _WX_WX_SERBASEH_H__
#define _WX_WX_SERBASEH_H__
#include <wx/setup.h>
#include <wx/dynlib.h>
#include "wx/setup.h"
#include "wx/dynlib.h"
#define WXSERIAL(classname) classname##_Serialize

View File

@@ -24,13 +24,13 @@
// wxSocket headers (generic)
// ---------------------------------------------------------------------------
#ifdef WXPREC
# include <wx/wxprec.h>
# include "wx/wxprec.h"
#else
# include <wx/event.h>
# include <wx/string.h>
# include "wx/event.h"
# include "wx/string.h"
#endif
#include <wx/sckaddr.h>
#include "wx/sckaddr.h"
#include "wx/gsocket.h"
class WXDLLEXPORT wxTimer;

View File

@@ -352,7 +352,7 @@ void WXDLLEXPORT wxMutexGuiLeave();
#else // !wxUSE_THREADS
#include <wx/defs.h> // for WXDLLEXPORT
#include "wx/defs.h" // for WXDLLEXPORT
// no thread support
inline void WXDLLEXPORT wxMutexGuiEnter() { }

View File

@@ -16,7 +16,7 @@
#pragma interface "txtstrm.h"
#endif
#include <wx/stream.h>
#include "wx/stream.h"
#if wxUSE_STREAMS
@@ -73,6 +73,8 @@ class WXDLLEXPORT wxTextOutputStream {
wxOutputStream *m_output;
};
wxTextOutputStream &endl( wxTextOutputStream &stream );
#endif
// wxUSE_STREAMS

View File

@@ -20,10 +20,10 @@
#if wxUSE_STREAMS && wxUSE_FILE
#include <wx/object.h>
#include <wx/string.h>
#include <wx/stream.h>
#include <wx/file.h>
#include "wx/object.h"
#include "wx/string.h"
#include "wx/stream.h"
#include "wx/file.h"
class wxFileInputStream: public wxInputStream {
public:

View File

@@ -19,7 +19,7 @@
#if wxUSE_ZLIB && wxUSE_STREAMS
#include <wx/stream.h>
#include "wx/stream.h"
class WXDLLEXPORT wxZlibInputStream: public wxFilterInputStream {
public: