projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7b0dcd
)
Compile fix for MinGW32
author
Robert Roebling
<robert@roebling.de>
Sun, 31 Mar 2002 12:06:08 +0000
(12:06 +0000)
committer
Robert Roebling
<robert@roebling.de>
Sun, 31 Mar 2002 12:06:08 +0000
(12:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14877
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/common/filename.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/common/filename.cpp
b/src/common/filename.cpp
index 08bebb725b3283e42cb268509444a76cb1cfba99..bc37751bbf05fc99be2226df95d9659c31446f73 100644
(file)
--- a/
src/common/filename.cpp
+++ b/
src/common/filename.cpp
@@
-197,8
+197,9
@@
private:
static void ConvertFileTimeToWx(wxDateTime *dt, const FILETIME &ft)
{
+ FILETIME ftcopy = ft;
FILETIME ftLocal;
- if ( !::FileTimeToLocalFileTime(&ft, &ftLocal) )
+ if ( !::FileTimeToLocalFileTime(&ft
copy
, &ftLocal) )
{
wxLogLastError(_T("FileTimeToLocalFileTime"));
}