wxwidgets/src/common
Scott Talbert fc35ad92bb Remove unnecessary empty destructors
These cause a problem for GCC 14 which detects that there are no
corresponding copy constructors and assignment operators and gives
-Wdeprecated-copy-dtor due to their presence, e.g.

/home/fedora/swt2c/wxWidgets/bld/bk-deps g++ -c -o test_allheaders_allheaders.o  -I/home/fedora/swt2c/wxWidgets/bld/lib/wx/include/gtk3-unicode-3.3 -I../../include -D_FILE_OFFSET_BITS=64 -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/atk-1.0 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/at-spi2-atk/2.0 -I/usr/include/cloudproviders -I/usr/include/webp -I/usr/include/blkid -I/usr/include/at-spi-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/libmount -I/usr/include/pixman-1 -I/usr/include/libxml2 -I/usr/include/fribidi -I/usr/include/sysprof-6 -pthread -I/usr/include/libpng16 -DWITH_GZFILEOP  -D__WXGTK__      -I../../tests -DWXUSINGDLL -I../../tests/../samples -I../../3rdparty/catch/single_include -pthread -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -O2 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/libmount -I/usr/include/libxml2 -I/usr/include/sysprof-6 -I/usr/include/libpng16 -DWITH_GZFILEOP -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/webp -I/usr/include/gtk-3.0/unix-print -I/usr/include/gtk-3.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/cloudproviders -I/usr/include/at-spi-2.0 -I/usr/include/gio-unix-2.0  -fvisibility=hidden -fvisibility-inlines-hidden -fPIC -DPIC   ../../tests/allheaders.cpp
In file included from ../../include/wx/evtloop.h:13,
                 from ../../tests/testprec.h:5,
                 from ../../tests/allheaders.cpp:369:
../../include/wx/event.h: In copy constructor ‘wxSetCursorEvent::wxSetCursorEvent(const wxSetCursorEvent&)’:
../../include/wx/event.h:1943:11: error: implicitly-declared ‘wxCursor::wxCursor(const wxCursor&)’ is deprecated [-Werror=deprecated-copy-dtor]
 1943 |           m_cursor(event.m_cursor)
      |           ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../include/wx/cursor.h:51,
                 from ../../include/wx/event.h:21:
../../include/wx/gtk/cursor.h:37:13: note: because ‘wxCursor’ has user-provided ‘virtual wxCursor::~wxCursor()’
   37 |     virtual ~wxCursor();
      |             ^
../../include/wx/event.h: In member function ‘void wxSetCursorEvent::SetCursor(const wxCursor&)’:
../../include/wx/event.h:1949:57: error: implicitly-declared ‘wxCursor& wxCursor::operator=(const wxCursor&)’ is deprecated [-Werror=deprecated-copy-dtor]
 1949 |     void SetCursor(const wxCursor& cursor) { m_cursor = cursor; }
      |                                                         ^~~~~~
../../include/wx/gtk/cursor.h:37:13: note: because ‘wxCursor’ has user-provided ‘virtual wxCursor::~wxCursor()’
   37 |     virtual ~wxCursor();
      |             ^

Fixes #24248.

Closes #24255.
2024-01-28 18:16:07 +01:00
..
accelcmn.cpp Remove wxUSE_UNICODE checks as they're always true now 2022-10-27 19:43:30 +02:00
accesscmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
addremovectrl.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
affinematrix2d.cpp Avoid some -Wfloat-conversion warnings 2022-02-13 18:11:55 -08:00
anidecod.cpp Use std::vector<wxImage> instead of wxImageArray 2023-04-12 18:09:47 +01:00
animatecmn.cpp Fix wrong uses of wxBitmap::CreateWithDIPSize() 2024-01-09 15:09:31 +01:00
any.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
appbase.cpp Don't use TABs in assert stack trace 2023-12-08 03:03:46 +01:00
appcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
arcall.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
arcfind.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
archive.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
arrstr.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
artprov.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
artstd.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
arttango.cpp Remove configure.in to configure.ac 2023-07-24 00:11:26 +02:00
base64.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
bmpbase.cpp Add a function to save a bitmap callable from debugger 2023-11-06 22:08:51 +01:00
bmpbndl.cpp Allow passing const wxWindow* to more wxBitmapBundle methods 2023-11-06 22:05:25 +01:00
bmpbtncmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
bmpcboxcmn.cpp Remove the size parameter of wxBitmapBundle::GetConsensusSizeFor() 2022-06-05 03:23:41 +02:00
bookctrl.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
btncmn.cpp Redefine wxTRANSPARENT_WINDOW as 0 and stop using it 2022-11-28 19:04:56 +00:00
cairo.cpp Fix creating wxCairoContext from HDC (wxMSW) 2022-11-24 22:25:08 +01:00
calctrlcmn.cpp Use range-for loop for iterating over wxDateTimeArray 2023-04-12 18:09:48 +01:00
checkboxcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
checklstcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
choiccmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
clipcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
clntdata.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
clrpickercmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
cmdline.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
cmdproc.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
cmndata.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
colourcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
colourdata.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
combocmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
config.cpp Add wxHAS_CONFIG_AS_{REG,FILE}CONFIG symbols 2024-01-04 02:55:05 +01:00
containr.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
convauto.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
cshelp.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
ctrlcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
ctrlsub.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
datavcmn.cpp Fix background colour for empty cells in generic wxDataViewCtrl 2023-09-30 15:14:20 +02:00
datetime.cpp Add Catholic Feasts holiday authority class (US observances) 2023-12-05 00:53:26 +01:00
datetimefmt.cpp Avoid calling strftime("%F") when using MinGW 2023-12-31 15:29:19 +01:00
datstrm.cpp Remove wxUSE_UNICODE checks as they're always true now 2022-10-27 19:43:30 +02:00
dcbase.cpp Merge branch 'aui-repaint' 2024-01-10 18:43:24 +01:00
dcbufcmn.cpp Fix wrong uses of wxBitmap::CreateWithDIPSize() 2024-01-09 15:09:31 +01:00
dcgraph.cpp Fix a typo in comment in wxGCDC::DoStretchBlit() 2024-01-10 18:15:47 +01:00
dcsvg.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
debugrpt.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
descrip.mms Fix a memory leak when using non-wx threads 2023-05-16 00:36:00 +02:00
dircmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
dirctrlcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
dlgcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
dndcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
dobjcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
docmdi.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
docview.cpp Stop using legacy wxSTD macro in the library code 2023-04-28 15:26:46 +02:00
dpycmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
dseldlg.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
dummy.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
dynlib.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
dynload.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
encconv.cpp Avoid Clang -Wcomma warnings 2023-11-23 09:17:21 -08:00
event.cpp Return false from wxKeyEvent::IsKeyInCategory(WXK_TAB) for Ctrl+I 2024-01-27 17:56:21 +01:00
evtloopcmn.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
extended.c Get rid of v2.8 code 2022-08-02 08:26:29 +02:00
fddlgcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
fdiodispatcher.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
ffile.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
file.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
fileback.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
fileconf.cpp Merge branch 'default-xdg-config' 2024-01-12 18:31:58 +01:00
filectrlcmn.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
filefn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
filehistorycmn.cpp Fix file history items formatting when loading them from config 2023-09-08 01:24:41 +02:00
filename.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
filepickercmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
filesys.cpp Use std::unordered_map<> in wxFileSystem 2023-04-18 00:45:14 +02:00
filtall.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
filtfind.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
fldlgcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
fmapbase.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
fontcmn.cpp Remove unnecessary empty destructors 2024-01-28 18:16:07 +01:00
fontdata.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
fontenumcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
fontmap.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
fontmgrcmn.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
fontpickercmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
fontutilcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
framecmn.cpp Redefine wxTRANSPARENT_WINDOW as 0 and stop using it 2022-11-28 19:04:56 +00:00
fs_arc.cpp Avoid Clang -Wcomma warnings 2023-11-23 09:17:21 -08:00
fs_data.cpp Add wxFileSystemHandler for "data" scheme 2023-12-18 22:19:11 +01:00
fs_filter.cpp Use std::unique_ptr<> instead of wxDECLARE_SCOPED_PTR 2023-03-06 18:36:37 +00:00
fs_inet.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
fs_mem.cpp Use std::unordered_map<std::unique_ptr<>> in wxMemoryFSHandler 2023-04-18 00:46:16 +02:00
fswatchercmn.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
ftp.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
gaugecmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
gbsizer.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
gdicmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
geometry.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
gifdecod.cpp Fix crash when reading truncated GIF image 2023-07-02 18:06:03 +01:00
glcmn.cpp Fix creating wxGLCanvas with NULL attributes list 2022-09-28 23:59:31 +02:00
graphcmn.cpp Remove unnecessary empty destructors 2024-01-28 18:16:07 +01:00
gridcmn.cpp Redefine wxTRANSPARENT_WINDOW as 0 and stop using it 2022-11-28 19:04:56 +00:00
hash.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
hashmap.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
headercolcmn.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
headerctrlcmn.cpp Fix column reordering in wxHeaderCtrlSimple and related problems 2023-12-31 17:57:19 +01:00
helpbase.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
http.cpp Use std::unordered_map<> in wxHTTP directly 2023-04-18 00:45:14 +02:00
hyperlnkcmn.cpp Redefine wxTRANSPARENT_WINDOW as 0 and stop using it 2022-11-28 19:04:56 +00:00
iconbndl.cpp Stop using object array for wxIconArray 2023-04-12 18:09:48 +01:00
imagall.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
imagbmp.cpp Restore old delta-RLE bitmap background setting 2023-06-20 22:19:47 +02:00
image.cpp Avoid division-by-zero in wxImage::Paste() 2023-08-23 23:03:43 -07:00
imagfill.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
imaggif.cpp Use std::vector<wxImage> instead of wxImageArray 2023-04-12 18:09:47 +01:00
imagiff.cpp Avoid Clang -Wcomma warnings 2023-11-23 09:17:21 -08:00
imagjpeg.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
imagpcx.cpp Remove unnecessary includes of wx/list.h 2023-04-12 18:15:46 +01:00
imagpng.cpp Use a std::unordered_map<> of appropriate type in PNG code 2023-04-18 00:46:16 +02:00
imagpnm.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
imagtga.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
imagtiff.cpp Use RAII helper for cleanup in wxTIFFHandler::SaveFile() 2023-11-30 02:08:49 +01:00
imagxpm.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
init.cpp Fix crash due to using wxLog during shutdown in a better way 2024-01-28 17:30:52 +01:00
intl.cpp Replace zero-as-null with nullptr 2023-12-10 09:35:15 -08:00
ipcbase.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
languageinfo.cpp Improve generated process for the language database files 2023-04-18 14:27:28 +02:00
layout.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
lboxcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
list.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
listctrlcmn.cpp Redefine wxTRANSPARENT_WINDOW as 0 and stop using it 2022-11-28 19:04:56 +00:00
log.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
longlong.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
lzmastream.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
markupparser.cpp Replace wxOVERRIDE and wxNOEXCEPT with override and noexcept 2022-10-15 18:10:45 +02:00
matrix.cpp Deprecate wxTransformMatrix to prepare for its removal later 2020-10-16 02:03:38 +02:00
mediactrlcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
menucmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
mimecmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
modalhook.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
module.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
mousemanager.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
msgout.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
mstream.cpp Update wxMemoryInputStream::Peek to set last read count. 2023-08-06 20:46:27 -04:00
nbkbase.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
notifmsgcmn.cpp Fix deleting taskbar icon in wxMSW wxNotificationMessage 2023-04-12 16:44:11 +02:00
numformatter.cpp Fix double negatives used with 'neither' in docs and comments 2022-08-19 16:22:21 +02:00
object.cpp Remove memory debugging/tracing support and all related options 2023-01-05 21:41:38 +01:00
odcombocmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
overlaycmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
ownerdrwcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
panelcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
paper.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
persist.cpp Use std::unordered_map<> in wxPersistenceManager 2023-04-18 00:54:12 +02:00
pickerbase.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
platinfo.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
popupcmn.cpp Fix wxPopupTransientWindow::Dismiss() implementation 2023-12-27 19:49:10 +01:00
powercmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
preferencescmn.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
prntbase.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
process.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
protocol.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
quantize.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
radiobtncmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
radiocmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
rearrangectrl.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
regex.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
rendcmn.cpp Fix using unique_ptr<> in the builds with wxUSE_INTL==0 2023-10-25 23:50:17 +02:00
rgncmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
richtooltipcmn.cpp Take wxBitmapBundle, not just wxIcon, in wxRichToolTip::SetIcon() 2022-06-26 21:52:30 +02:00
sckaddr.cpp Replace zero-as-null with nullptr 2023-12-10 09:35:15 -08:00
sckfile.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
sckipc.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
sckstrm.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
scrolbarcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
secretstore.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
selectdispatcher.cpp Remove unnecessary includes of wx hash-related headers 2023-04-12 18:15:45 +01:00
settcmn.cpp Add wxSystemAppearance::AreAppsDark() and IsSystemDark() 2022-12-26 22:02:11 +00:00
sizer.cpp Fix double negatives used with 'neither' 2023-11-30 02:31:42 +01:00
slidercmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
socket.cpp Make wxSocket::Peek() work with UDP too 2023-06-05 01:49:41 +02:00
socketiohandler.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
spinbtncmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
spinctrlcmn.cpp Redefine wxTRANSPARENT_WINDOW as 0 and stop using it 2022-11-28 19:04:56 +00:00
srchcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
sstream.cpp Fix using wxStringOutputStream with surrogates in UTF-8 build 2023-03-27 16:32:09 +01:00
statbar.cpp Add wxStatusBar::AddFieldControl() to simplify adding controls 2023-12-05 00:39:04 +01:00
statbmpcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
statboxcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
statlinecmn.cpp Redefine wxTRANSPARENT_WINDOW as 0 and stop using it 2022-11-28 19:04:56 +00:00
stattextcmn.cpp Redefine wxTRANSPARENT_WINDOW as 0 and stop using it 2022-11-28 19:04:56 +00:00
stdpbase.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
stdstream.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
stockitem.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
stopwatch.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
strconv.cpp Remove unused variables 2024-01-04 12:34:56 -08:00
stream.cpp Optimize wxInputStream::SeekI() from start or current position 2023-09-30 15:11:03 +02:00
string.cpp Hide operator<<() overloads for wxString and related classes 2024-01-07 00:28:16 +01:00
stringops.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
strvararg.cpp Switch to a simpler wxString::Printf() implementation 2022-11-23 02:47:41 +01:00
sysopt.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
tarstrm.cpp Use std::unique_ptr<> instead of wxDECLARE_SCOPED_PTR 2023-03-06 18:36:37 +00:00
taskbarcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
tbarbase.cpp Fix return value of wxToolBar::GetToolBitmapSize() under GTK/Mac 2023-02-08 17:35:20 +01:00
textbuf.cpp Remove extraneous semicolons 2023-11-23 09:25:03 -08:00
textcmn.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
textentrycmn.cpp Remove wxUSE_UNICODE checks as they're always true now 2022-10-27 19:43:30 +02:00
textfile.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
textmeasurecmn.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
time.cpp Fix data race in wxGetTimeZone() 2023-03-13 01:17:23 +01:00
timercmn.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
timerimpl.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
tokenzr.cpp Remove wxUSE_UNICODE checks as they're always true now 2022-10-27 19:43:30 +02:00
toplvcmn.cpp Improve GetBestSize() for TLWs containing a single child 2022-12-14 14:58:12 +01:00
translation.cpp Return true from AddCatalog() if message ID matches language 2023-11-07 15:11:26 +01:00
treebase.cpp Redefine wxTRANSPARENT_WINDOW as 0 and stop using it 2022-11-28 19:04:56 +00:00
txtstrm.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
uiactioncmn.cpp Fix simulating keystrokes with modifier(s) under wxQt 2023-10-31 22:16:14 +01:00
uilocale.cpp Build fix for wxUSE_DATETIME==0 2023-10-12 16:15:16 -07:00
unichar.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
unictabl.inc Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
uri.cpp Improve wxURI parsing 2023-03-22 18:35:45 +01:00
url.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
ustring.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
utilscmn.cpp Update copyright years to 2024 2023-12-31 18:56:06 +01:00
valgen.cpp wxGenericValidator: add support for wxCheckBoxState 2023-12-17 02:10:51 -05:00
validate.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
valnum.cpp Make checks on character entry in numeric validators less relaxed 2024-01-28 18:02:13 +01:00
valtext.cpp Prevent pasting invalid characters when using wxTextValidator 2023-08-25 20:31:35 +02:00
variant.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
webrequest.cpp Fix wxWebResponse::GetMimeType() always returning empty string 2023-04-20 15:15:54 +02:00
webrequest_curl.cpp Use std::unordered_xxx classes in wxWebRequestCURL code 2023-04-12 18:15:45 +01:00
webview.cpp Add wxEVT_WEBVIEW_CREATED for wxWebViewChromium async creation 2023-09-06 03:50:34 +02:00
webview_chromium.cpp Allow customizing CEF log file and log level 2024-01-17 01:16:06 +01:00
webviewarchivehandler.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
webviewfshandler.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
wfstream.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
wincmn.cpp Add wxWindow::WXNotifyDPIChange() for wxOSX and wxGTK 2023-11-06 23:51:30 +01:00
windowid.cpp Use std::unordered_map<> in wxIdManager code 2023-04-12 18:15:45 +01:00
wrapsizer.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
wxcrt.cpp Avoid Clang -Wcomma warnings 2023-11-23 09:17:21 -08:00
wxprintf.cpp Remove unnecessary includes of wx hash-related headers 2023-04-12 18:15:45 +01:00
xlocale.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00
xpmdecod.cpp Use std::unordered_map<> in wxXPMDecoder implementation 2023-04-12 18:15:45 +01:00
xti.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
xtistrm.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
xtixml.cpp Remove all blank "Modified by:" lines from top comment blocks 2023-10-22 01:22:48 +02:00
zipstrm.cpp Replace zero-as-null with nullptr 2023-12-10 09:35:15 -08:00
zstream.cpp Use nullptr instead of NULL in the code and documentation 2022-10-18 01:25:25 +02:00