diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-11-29 04:56:15 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-11-29 04:56:15 +0800 |
commit | a4d5b72ba8292ba9de7a8037e47000be3c2d2ccd (patch) | |
tree | 13d6f982ba4bdee4556b7b6e842f5ca5c2655fa7 /editors | |
parent | d39b9c8f62df2448be70478957c401b476df3eae (diff) | |
download | freebsd-ports-gnome-a4d5b72ba8292ba9de7a8037e47000be3c2d2ccd.tar.gz freebsd-ports-gnome-a4d5b72ba8292ba9de7a8037e47000be3c2d2ccd.tar.zst freebsd-ports-gnome-a4d5b72ba8292ba9de7a8037e47000be3c2d2ccd.zip |
oops... forget to add this file in the last commit
Diffstat (limited to 'editors')
-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); |