diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-11-28 20:56:15 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-11-28 20:56:15 +0000 |
commit | d2613bad89ebbf69e336b78e4f2b0750fc954148 (patch) | |
tree | a1ad16f828a03c46b301afa5ed7e84ec76b957e7 | |
parent | 84e710a152da3150b9284b8f3bbf6f15b9cf1843 (diff) |
Notes
-rw-r--r-- | editors/poedit/files/patch-src::manager.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/poedit/files/patch-src::manager.cpp b/editors/poedit/files/patch-src::manager.cpp new file mode 100644 index 000000000000..0a7c6d8f1f4e --- /dev/null +++ b/editors/poedit/files/patch-src::manager.cpp @@ -0,0 +1,11 @@ +--- src/manager.cpp.orig Thu Nov 29 04:30:28 2001 ++++ src/manager.cpp Thu Nov 29 04:30:40 2001 +@@ -171,7 +171,7 @@ + cat.GetStatistics(&all, &fuzzy, &untranslated); + modtime = wxFileModificationTime(file); + lastmodified = cat.Header().RevisionDate; +- cfg->Write(key + _T("timestamp"), modtime); ++ cfg->Write(key + _T("timestamp"), (long)modtime); + cfg->Write(key + _T("all"), (long)all); + cfg->Write(key + _T("fuzzy"), (long)fuzzy); + cfg->Write(key + _T("untranslated"), (long)untranslated); |