wxWidgets/src/common
Vadim Zeitlin caa42c43d0 no changes, just deTABbed
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56752 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-11-13 12:04:17 +00:00
..
accelcmn.cpp don't use _T() inside wxGetTranslation() and related macros (wxTRANSLATE, _, ...) to preserve compatibility with the old ASCII build (even at the expense with the Unicode build compatibility) 2007-09-07 21:47:45 +00:00
accesscmn.cpp Nuke #pragma implementation/interface's 2005-09-23 12:56:45 +00:00
anidecod.cpp add wxImage::SetType() and use it in animation decoders (#9639) 2008-08-02 20:13:41 +00:00
animatecmn.cpp declare all NameStr[] strings as const char using the correct WXDLLIMPEXP_DATA_ macros; in the process, change wxPropGrid window classes to take 'const wxString& name' arguments instead of 'const wxChar *name' 2008-11-02 22:16:14 +00:00
appbase.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
appcmn.cpp get rid of __WXCOCOA__ check in common CreateLogTarget(), the right way to do this is to override wxUSE_LOG_DIALOG option in wxCocoa-specific chkconf.h 2008-09-11 11:20:33 +00:00
arcall.cpp Base class factory on the wxFilter base class and implement the new Find feature. 2006-10-27 09:53:38 +00:00
arcfind.cpp don't use implicit wxString->char*/wchar_t* conversion, it will not be available in wxUSE_STL build in the future 2007-06-10 17:42:41 +00:00
archive.cpp Base class factory on the wxFilter base class and implement the new Find feature. 2006-10-27 09:53:38 +00:00
arrstr.cpp use std::sort() instead of qsort() to implement wxArrayString::Sort(), this makes it thread-safe without any extra hacks and also makes the code simpler 2008-08-27 19:40:20 +00:00
artprov.cpp fix (harmless) unused variable warning 2008-11-03 17:10:21 +00:00
artstd.cpp Cleaned up wxArtProvider: 2008-10-16 19:07:42 +00:00
base64.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
bmpbase.cpp build fix 2008-03-25 21:19:27 +00:00
bmpcboxcmn.cpp declare all NameStr[] strings as const char using the correct WXDLLIMPEXP_DATA_ macros; in the process, change wxPropGrid window classes to take 'const wxString& name' arguments instead of 'const wxChar *name' 2008-11-02 22:16:14 +00:00
bookctrl.cpp use a single wxBookCtrlEvent class for all wxBookCtrlBase-derived controls (#9667) 2008-08-01 13:46:46 +00:00
btncmn.cpp added missing wxUSE_XXX checks 2007-07-10 23:59:42 +00:00
cairo.cpp wxDL_XXX macros and dynamic loading cleanup: 2007-09-10 10:49:55 +00:00
calctrlcmn.cpp mark holidays if wxCAL_SHOW_HOLIDAYS is on (replaces #9155) 2008-08-05 01:55:44 +00:00
choiccmn.cpp make various control names constants of type char, not wxChar, as this is more compatible with the old ANSI build and it doesn't make much sense to use wchar_t for ASCII strings anyhow 2007-11-12 21:37:46 +00:00
clipcmn.cpp Include wx/module.h according to precompiled headers of wx/wx.h (with other minor cleaning). 2006-08-31 19:31:43 +00:00
clntdata.cpp Nuke #pragma implementation/interface's 2005-09-23 12:56:45 +00:00
clrpickercmn.cpp make various control names constants of type char, not wxChar, as this is more compatible with the old ANSI build and it doesn't make much sense to use wchar_t for ASCII strings anyhow 2007-11-12 21:37:46 +00:00
cmdline.cpp already escaped backslash shouldn't escape the following quote in ConvertStringToArgs() 2008-07-19 01:53:04 +00:00
cmdproc.cpp Nuke #pragma implementation/interface's 2005-09-23 12:56:45 +00:00
cmndata.cpp added check for self-assignment to wxPrintData::operator=() (thanks HP aCC for a genuinely useful warning) and also changed it return type to the standard one instead of void 2008-11-12 14:34:40 +00:00
colourcmn.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
combocmn.cpp wxComboCtrlBase::Enable() does not refresh the control #9900 2008-08-23 08:19:42 +00:00
config.cpp don't use 8 bit characters in sources, this results in level 1 warning with VC8 (patch 1841741) 2007-12-03 22:09:26 +00:00
containr.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
convauto.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
cshelp.cpp really use the position passed to ShowHelpAtPoint() when using CHM help controller (we always used the mouse position instead) 2008-02-29 23:54:16 +00:00
ctrlcmn.cpp add wxGenericStaticText (#9656) 2008-10-12 13:04:00 +00:00
ctrlsub.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
datacmn.cpp make various control names constants of type char, not wxChar, as this is more compatible with the old ANSI build and it doesn't make much sense to use wchar_t for ASCII strings anyhow 2007-11-12 21:37:46 +00:00
datavcmn.cpp Added wxChoice renderer to wxDataViewCtrl 2008-11-10 14:08:38 +00:00
datetime.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
datstrm.cpp don't crash in ReadString() if the length read from the stream is too big (bug 1933560) 2008-04-05 17:28:32 +00:00
dcbase.cpp wxGTK: Fixed printing to use fonts sizes adjustment consistent with wxMSW. In 2008-09-28 09:33:04 +00:00
dcbufcmn.cpp don't blit more than necessary in wxBufferedDC::UnMask() (patch 1943622) [should have been part of r53565] 2008-05-17 22:13:22 +00:00
dcgraph.cpp forward define for non precomp build, switching preproc constants for consistency 2008-09-05 19:02:51 +00:00
dcsvg.cpp fix a huge number of build errors 2008-03-17 18:26:00 +00:00
debugrpt.cpp build fixes for wxUSE_ON_FATAL_EXCEPTION==0 (#9937) 2008-09-14 00:26:29 +00:00
descrip.mms Update OpenVMS compile support (problem cairo logical) 2008-10-29 07:53:45 +00:00
dircmn.cpp moving common implementation for osx closer to unix, by using threadspsx.cpp and unix/dir.cpp, getting rid of morefile(x) and moving colour.cpp to core 2008-08-01 06:40:16 +00:00
dlgcmn.cpp fix more Borland release build warnings about unused variable/code without effect 2008-10-20 10:30:49 +00:00
dndcmn.cpp Added DnD guard 2006-11-26 21:50:51 +00:00
dobjcmn.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
docmdi.cpp hook the docview-specific customization of event handling logic at TryValidator() level instead of ProcessEvent(): this ensures that the events are not sent to wxApp before they're passed to all the handlers which might process them (before the events were passed to wxDocument and then immediately to wxApp) 2008-09-22 00:33:11 +00:00
docview.cpp added wxDocument::AlreadySaved() and use it in OnUpdateFileSave() to ensure that the "Save" menu item is enabled for new documents, even although they're not modified yet (otherwise the standard Ctrl-S key doesn't work in this case which is pretty annoying) 2008-10-29 16:23:25 +00:00
dpycmn.cpp correct closing comments in #endifs (patch 1756990) 2007-07-21 23:54:55 +00:00
dseldlg.cpp Include wx/scrolwin.h and wx/dirdlg.h according to precompiled headers of wx/wx.h (with other minor cleaning). 2006-06-07 11:44:19 +00:00
dummy.cpp Various dummy.cpp centralized in common/dummy.cpp. Build rebaked. 2006-05-31 11:48:45 +00:00
dynarray.cpp get rid of base arrays in wxUSE_STL build, we don't need them there and deriving wxFooPtr from wxBaseArrayPtrVoid makes it iterators return void pointers instead of those of the correct type; added test case to check for this 2008-07-22 01:01:56 +00:00
dynlib.cpp cleaning up common OSX code 2008-03-07 16:51:06 +00:00
dynload.cpp Make wxClassInfo attributes private. Replace 2007-04-15 11:43:37 +00:00
effects.cpp fix the wrong #ifdef WXWIN_COMPATIBILITY_2_8 checks, #if should be used (#9644) 2008-06-26 11:16:40 +00:00
emptydmy.cpp Fix build on platforms without any real source in the new media library. 2004-11-12 15:48:10 +00:00
encconv.cpp fixing file paths after renaming 2008-06-11 19:22:25 +00:00
event.cpp use wxEventType coherently with the docs 2008-11-09 16:44:56 +00:00
evtloopcmn.cpp fix for monolithic build 2007-07-15 19:32:20 +00:00
execcmn.cpp return bool from wxStreamTempInputBuffer::Update() indicating if anything was done; don't sleep in wxExecute() if IO is coming 2008-03-22 03:50:35 +00:00
extended.c replace wrong WXDLLEXPORT declarations with correct WXDLLIMPEXP_BASE/ADV/GL (patch from Tim Stahlhut) 2007-12-12 01:35:53 +00:00
fddlgcmn.cpp Nuke #pragma implementation/interface's 2005-09-23 12:56:45 +00:00
fdiodispatcher.cpp no changes, just removed _T()s and unnecessary wxUnusedVar()s 2008-10-16 12:07:35 +00:00
ffile.cpp compilation fixes for PCH-less build 2007-06-11 06:10:37 +00:00
file.cpp return 0 (meaning the file is not seekable, as the docs now explain) instead of 4KB for the files in sysfs under Linux (#9965) 2008-09-19 08:11:44 +00:00
fileback.cpp Make wxBackingFile internal, and remove wxZipFSHander, add a typedef to 2006-10-29 20:06:45 +00:00
fileconf.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
filectrlcmn.cpp declare all NameStr[] strings as const char using the correct WXDLLIMPEXP_DATA_ macros; in the process, change wxPropGrid window classes to take 'const wxString& name' arguments instead of 'const wxChar *name' 2008-11-02 22:16:14 +00:00
filefn.cpp replace wxASSERT in wxFindNextFile() with wxCHECK to avoid crashes in release build (#9828) 2008-08-06 10:25:10 +00:00
filename.cpp don't replace . and .. with the corresponding directoties names in GetLongPath() as this breaks the normalization of file names without wxPATH_NORM_DOTS flag (#9814) 2008-10-12 15:15:32 +00:00
filepickercmn.cpp translate wx{File,Dir}PickerWidgetLabel 2007-12-08 20:49:21 +00:00
filesys.cpp avoid an unnecessary and unused (resulting in release build warning) variable in GetMimeTypeFromExt() 2008-10-20 09:57:34 +00:00
filtall.cpp Add class factories for filter streams. Also filters now follow the convention 2006-10-25 20:41:12 +00:00
filtfind.cpp don't use implicit wxString->char*/wchar_t* conversion, it will not be available in wxUSE_STL build in the future 2007-06-10 17:42:41 +00:00
fldlgcmn.cpp add support for custom controls in file dialog in wxGTK and generic versions; also allow using generic dialogs in the sample with wxGTK2 (patch 1846837) 2008-03-02 14:33:47 +00:00
fmapbase.cpp CP-xxx and MS-yyy iconv identifiers actually don't have dashes in them (this fixes CP932 unit test failure under FreeBSD where iconv doesn't have WINDOWS-932) 2008-07-17 19:44:59 +00:00
fontcmn.cpp fix the incoherence pointed out by ifacecheck between wx docs, that documents usage of the wxFontFamily, wxFontStyle and wxFontWeight enums in wxFont setters and getters, and the actual sources, which use 'int' instead; provided the same backward-compatibility pattern already used for wxBrush,wxPen both against 'int' overloads and against the wxDeprecatedGUIConstants enum values 2008-11-03 17:02:25 +00:00
fontenumcmn.cpp added wxUSE_FONTENUM for wxFontEnumerator 2007-07-21 02:20:00 +00:00
fontmap.cpp added wxApp::Set/GetAppDisplayName() (patch 1780414) 2007-09-09 23:26:18 +00:00
fontmgrcmn.cpp compilation fix after wxFont changes (closes #10152) 2008-11-10 14:30:41 +00:00
fontpickercmn.cpp make various control names constants of type char, not wxChar, as this is more compatible with the old ANSI build and it doesn't make much sense to use wchar_t for ASCII strings anyhow 2007-11-12 21:37:46 +00:00
fontutilcmn.cpp enable wxFontMapper in wxDFB port 2007-01-22 14:05:07 +00:00
framecmn.cpp move SendSizeEvent() down to wxWindow from wxFrame; added SendSizeEventToParent() helper 2008-07-29 12:32:47 +00:00
fs_arc.cpp Compile fix for --without-zlib --enable-compat26. 2008-02-01 17:07:40 +00:00
fs_filter.cpp WX_PRECOMP, not WXPRECOMP 2007-04-27 21:35:43 +00:00
fs_inet.cpp determine wxFSFile's MIME type when wxFSFile::GetMimeType() is called instead of creating it; this dramatically improves startup times of XRC applications on Unix 2007-06-17 10:59:01 +00:00
fs_mem.cpp fix bugs in FindFirst() (it gets URL, not filename, on input) and FindNext() (which always forgot the last match) (fixes #10077) 2008-10-14 14:13:15 +00:00
ftp.cpp fix virtual function hiding warnings introduced to changing wxSockAddress argument of Connect() to be passed by const reference 2008-10-20 08:59:45 +00:00
gaugecmn.cpp make various control names constants of type char, not wxChar, as this is more compatible with the old ANSI build and it doesn't make much sense to use wchar_t for ASCII strings anyhow 2007-11-12 21:37:46 +00:00
gbsizer.cpp ShouldAccountFor was a 2.8 only change. Use IsShown instead. 2008-07-10 02:28:06 +00:00
gdicmn.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
geometry.cpp Include wx/log.h according to precompiled headers of wx/wx.h (with other minor cleaning). 2006-04-26 08:21:31 +00:00
gifdecod.cpp don't keep the transparent palette colour from the previous frame for the next one which may not have any transparency at all (#9747) 2008-08-03 00:36:52 +00:00
glcmn.cpp check for NULL pointer in IsExtensionInList() 2008-11-06 23:31:26 +00:00
graphcmn.cpp no changes, just deTABbed 2008-11-13 12:04:17 +00:00
gsocketiohandler.cpp more socket cleanup to allow using wxSocket from both wxBase and wxCore (replaces patch 1756260) 2007-12-19 16:45:08 +00:00
hash.cpp include object.h so that delete has complete type 2007-05-02 07:41:27 +00:00
hashmap.cpp don't compile in wx hash code unless we really use it (#9532:12) 2008-06-14 01:53:29 +00:00
helpbase.cpp wx/wxprec.h already includes wx/defs.h (with other minor cleaning). 2006-04-18 07:24:35 +00:00
http.cpp fix virtual function hiding warnings introduced to changing wxSockAddress argument of Connect() to be passed by const reference 2008-10-20 08:59:45 +00:00
hyperlnkcmn.cpp declare all NameStr[] strings as const char using the correct WXDLLIMPEXP_DATA_ macros; in the process, change wxPropGrid window classes to take 'const wxString& name' arguments instead of 'const wxChar *name' 2008-11-02 22:16:14 +00:00
iconbndl.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
imagall.cpp added TGA handler (somewhat modified patch 1393912) 2006-10-29 18:58:25 +00:00
imagbmp.cpp remove unused abits variable from DoLoadDib() 2008-10-20 08:51:30 +00:00
image.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
imagfill.cpp fix a huge number of build errors 2008-03-17 18:26:00 +00:00
imaggif.cpp added wxAnimationCtrl (patch 1570325) 2006-10-09 17:51:07 +00:00
imagiff.cpp various warning fixes for icc 9.1 compilation 2007-09-21 12:00:25 +00:00
imagjpeg.cpp inherit wx_error_mgr from jpeg_error_mgr instead of embedding the latter in the former (part of #9803) 2008-08-01 14:29:33 +00:00
imagpcx.cpp fix crash when reading malformed PCX images (#3836) 2008-07-22 20:16:03 +00:00
imagpng.cpp reverting style of include back to user include as before 2008-05-09 16:57:43 +00:00
imagpnm.cpp added raw RGB support and colour normalization to PNM handler 2007-06-03 22:09:51 +00:00
imagtga.cpp added IO errors handling to TGA reading code 2007-03-30 16:33:12 +00:00
imagtiff.cpp fixed error logging in TIFF image handler to output something useful regardless of the build 2008-05-17 09:34:28 +00:00
imagxpm.cpp Added const when writing XPMs to avoid gcc warnings 2008-05-07 07:29:13 +00:00
init.cpp fix handling of native toolkit command line options broken by wxCmdLineArgsArray change 2008-03-10 19:40:21 +00:00
intl.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
ipcbase.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
layout.cpp Include wx/sizer.h and wx/layout.h according to precompiled headers of wx/wx.h (with other minor cleaning). 2006-06-08 06:57:39 +00:00
lboxcmn.cpp get rid of MSVC warning about possibly uninitialized variable in CalcAndSendEvent() and also make its code somewhat more structured 2008-05-27 23:21:29 +00:00
list.cpp Made wxList no longer inherit from wxObject, no change in STL mode 2007-10-13 22:00:10 +00:00
listctrlcmn.cpp make various control names constants of type char, not wxChar, as this is more compatible with the old ANSI build and it doesn't make much sense to use wchar_t for ASCII strings anyhow 2007-11-12 21:37:46 +00:00
log.cpp Use t_str() instead of c_str() 2008-07-04 14:05:16 +00:00
longlong.cpp first phase of transition to unified Unicode build: 2007-03-17 10:26:10 +00:00
matrix.cpp Include wx/math.h according to precompiled headers of wx/wx.h (with other minor cleaning). 2006-06-15 17:58:49 +00:00
mediactrlcmn.cpp Get wxMediaCtrl stub impl. going for OS X Cocoa. 2008-09-25 00:02:52 +00:00
memory.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
menucmn.cpp allow creating items without parent menus (#3425) 2008-06-22 14:47:40 +00:00
mimecmn.cpp OSX regrouping 2008-07-29 19:47:40 +00:00
module.cpp add wxModule::AddDependency(name) overload (patch 1790451) 2007-11-17 00:12:01 +00:00
msgout.cpp Use t_str() instead of c_str() 2008-07-04 14:05:16 +00:00
mstream.cpp added wxRTTI macros to stream classes (patch 1687073) 2007-04-14 23:35:13 +00:00
nbkbase.cpp move notebook event definition to common code 2008-08-13 14:56:42 +00:00
object.cpp make IsKindOf() taking a const wxClassInfo* instead of a wxClassInfo*, just like the homonym method in wxClassInfo 2008-10-28 14:54:40 +00:00
overlaycmn.cpp changing to wxDC, so that wxGCDC can be used as well 2007-12-22 09:12:18 +00:00
paper.cpp Include wx/msw/wrap*.h according to pch support (with other minor cleaning). 2006-09-07 19:01:45 +00:00
pickerbase.cpp fix focus problems in picker controls under MSW which were due to not letting the system process kill focus for the text part of the control (#9687) 2008-07-06 23:57:23 +00:00
platinfo.cpp add platform info for Palm (add-wxpalm-info.diff part of patch 1894861) 2008-03-02 01:02:07 +00:00
popupcmn.cpp [ 1944519 ] improve left down event handling for wxPopupTransientWindow 2008-04-21 21:25:16 +00:00
powercmn.cpp Give wxPowerEvent wxRTTI 2007-09-19 23:14:16 +00:00
prntbase.cpp OSX regrouping 2008-07-29 19:47:40 +00:00
process.cpp Applied patch [ 1586964 ] Getting the PID of the process executed by wxProcess::Open() 2006-10-30 09:03:18 +00:00
protocol.cpp removed broken and global GetLine() function from wx/protocol/protocol.h; there's already wxProtocol::ReadLine() that actually works 2007-07-13 21:30:36 +00:00
quantize.cpp fixed unused parameter warning 2007-12-14 22:35:23 +00:00
radiocmn.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
regex.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
rendcmn.cpp Use scoped ptr template 2008-04-14 20:13:06 +00:00
rgncmn.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
sckaddr.cpp removed support for Salford compiler (which was almost certainly broken anyhow) (patch 1861133) 2007-12-31 10:05:00 +00:00
sckfile.cpp we don't need to include wx/url.h from the header, we do need to include wx/uri.h from the .cpp file (fixes compilation when wxUSE_URL==0 but wxUSE_PROTOCOL_FILE==1) 2006-12-06 19:20:40 +00:00
sckipc.cpp fix (justified) warnings about potential use of uninitialized variable in wxTCPEventHandler::Client_OnRequest() 2008-11-02 01:43:55 +00:00
sckstrm.cpp add wxSocket::IsClosed(), use it to implement Eof() in wxSocketStream 2008-07-12 02:28:12 +00:00
selectdispatcher.cpp made Dispatch() return bool indicating whether we processed any events inside it or if the timeout expired 2008-10-16 12:31:30 +00:00
settcmn.cpp removed WXWIN_COMPATIBILITY_2_4 from common and wxMSW files (patch 1675546) 2007-03-07 11:35:04 +00:00
sizer.cpp don't distribute negative extra space among box sizer items, this isn't useful as it results in overlapping windows (#10008) 2008-10-01 13:57:53 +00:00
socket.cpp no real changes, just also rename _Read/_Write() to DoRead/DoWrite() and clean them a little more too 2008-10-13 13:24:48 +00:00
srchcmn.cpp make various control names constants of type char, not wxChar, as this is more compatible with the old ANSI build and it doesn't make much sense to use wchar_t for ASCII strings anyhow 2007-11-12 21:37:46 +00:00
sstream.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
statbar.cpp declare all NameStr[] strings as const char using the correct WXDLLIMPEXP_DATA_ macros; in the process, change wxPropGrid window classes to take 'const wxString& name' arguments instead of 'const wxChar *name' 2008-11-02 22:16:14 +00:00
stattextcmn.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
stdpbase.cpp allow to optionally use vendor name component in standard paths (slightly modified patch 1831308) 2007-11-17 14:59:13 +00:00
stockitem.cpp add more stock items (#9799) 2008-08-01 14:38:02 +00:00
stopwatch.cpp removing unneeded code for osx 2008-06-08 16:56:17 +00:00
strconv.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
stream.cpp provide ctors allowing to specify the non-default buffer size for buffered streams and wxStreamBuffer itself 2008-10-29 16:42:45 +00:00
string.cpp resolve the DLL linking problems with MSVC due to use of static variables of template types by replacing them by a non-template unique untypedNullDataPtr 2008-11-02 01:48:36 +00:00
stringimpl.cpp dump totals as well as averages when gatheting statistics 2008-05-05 23:35:58 +00:00
stringops.cpp more strict UTF-8 validity checks, as it should be (patch #9847) 2008-08-09 21:38:21 +00:00
strvararg.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
sysopt.cpp workarounds for Palm compiler errors (pacc-error.diff part of patch 1894861) 2008-03-02 01:16:14 +00:00
tarstrm.cpp test ok in the record reading loop as otherwise we never exit from it if there is an invalid character in the record 2008-07-15 17:31:40 +00:00
taskbarcmn.cpp added wxEVT_TASKBAR_BALLOON_TIMEOUT/CLICK which will be used by the wxMSW wxNotificationMessage implementation 2007-12-01 22:48:06 +00:00
tbarbase.cpp don't waste time sending out update UI events for separators, they can't be updated anyhow 2008-09-21 13:05:56 +00:00
textbuf.cpp use iterator in wxTextBuffer::Translate() instead of c_str() 2007-12-31 08:58:05 +00:00
textcmn.cpp Fixed common style collection and superscript/subscript selection 2008-05-17 17:54:11 +00:00
textentrycmn.cpp set selection point to end in wxTextEntryBase::SetValue() as this should be done in all ports and in all controls (fixes a unit test failure for wxComboBox) 2008-09-19 10:13:38 +00:00
textfile.cpp fix bug introduced by the last change: we could overwrite the buffer if the file size changed while we were reading it 2008-05-13 19:40:42 +00:00
timercmn.cpp added wxTimerEvent::GetTimer() 2007-05-05 14:59:25 +00:00
timerimpl.cpp handle C++ exception in EVT_{TIMER,IDLE} handlers (#9768) 2008-07-20 22:05:30 +00:00
tokenzr.cpp fixed wxStringTokenizer to correctly handle wxTOKEN_RET_DELIMS after the recent change to use iterators 2007-08-11 19:17:14 +00:00
toplvcmn.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
treebase.cpp Next part of tree state icon patches 2008-06-24 12:48:01 +00:00
txtstrm.cpp added wxTextOutputStream::Flush(): this is necessary with the stateful encodings, such as UTF-7 2008-06-01 03:09:25 +00:00
unichar.cpp add cache for last used position and string length to UTF-8 wxString, dramatically improving performance of the code using indices to iterate over strings 2008-08-28 19:19:11 +00:00
unictabl.inc made the rest of wxEncodingConverter tables const 2006-07-31 16:28:43 +00:00
uri.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
url.cpp forward ported changes in 2.8.7 from WX_2_8_BRNACH 2007-11-09 20:28:43 +00:00
ustring.cpp fix linking problems due to MSVC implicitly considering template classes specializations used as base classes DLL-exported even though it doesn't actually export them when building the DLL (with or without explicit declspec(dllexport)); also replace wxCharTypeBuffer::NullData with a static function to allow not DLL-exporting this class 2008-10-30 23:04:29 +00:00
utilscmn.cpp use wxRegKey::QueryDefaultValue() explicitly to fix DMC compilation 2008-10-20 11:08:05 +00:00
valgen.cpp gtk-universal build fixes 2008-07-07 16:00:41 +00:00
validate.cpp Include wx/validate.h and wx/valtext.h according to precompiled headers of wx/wx.h (with other minor cleaning). 2006-06-09 21:21:53 +00:00
valtext.cpp removed support for Salford compiler (which was almost certainly broken anyhow) (patch 1861133) 2007-12-31 10:05:00 +00:00
variant.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
wfstream.cpp added a unit test for input/output file streams and fixed the problem it exposed (#3335) 2008-06-15 17:34:50 +00:00
wincmn.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
windowid.cpp fix off by one byg in ReserveId() (closes #10020) 2008-10-03 15:30:41 +00:00
wrapsizer.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
wxcrt.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
wxprintf.cpp compilation fixes after introduction of wxprintf.h 2007-08-22 15:22:28 +00:00
xlocale.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
xpmdecod.cpp compilation fix for PCH-less build after last commit 2008-08-03 10:54:33 +00:00
xti.cpp Include wx/list.h according to precompiled headers of wx/wx.h (with other minor cleaning). 2006-04-20 07:31:44 +00:00
xtistrm.cpp fix a couple of typos pointed out by a translator 2008-10-23 14:53:01 +00:00
xtixml.cpp no changes, just fixed a typo in an error message 2007-10-07 19:54:05 +00:00
zipstrm.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
zstream.cpp removed WXWIN_COMPATIBILITY_2_4 from common and wxMSW files (patch 1675546) 2007-03-07 11:35:04 +00:00