commit 73e7cfb26ac0a1483f8cfa0e114d851d27ac9552
Author: Richard Kimberly Heck <rikih...@lyx.org>
Date:   Fri Dec 18 14:55:58 2020 -0500

    Const
---
 src/VCBackend.cpp |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/VCBackend.cpp b/src/VCBackend.cpp
index c7ef6e6..feab330 100644
--- a/src/VCBackend.cpp
+++ b/src/VCBackend.cpp
@@ -565,8 +565,8 @@ void CVS::scanMaster()
        LYXERR(Debug::LYXVC, "LyXVC::CVS: scanMaster. \n     Checking: " << 
master_);
        // Ok now we do the real scan...
        ifstream ifs(master_.toFilesystemEncoding().c_str());
-       string name = onlyFileName(owner_->absFileName());
-       string tmpf = '/' + name + '/';
+       string const name = onlyFileName(owner_->absFileName());
+       string const tmpf = '/' + name + '/';
        LYXERR(Debug::LYXVC, "\tlooking for `" << tmpf << '\'');
        string line;
        static regex const reg("/(.*)/(.*)/(.*)/(.*)/(.*)");
@@ -589,8 +589,8 @@ void CVS::scanMaster()
                        //sm[5]; // tag or tagdate
                        FileName file(owner_->absFileName());
                        if (file.isReadableFile()) {
-                               time_t mod = file.lastModified();
-                               string mod_date = rtrim(asctime(gmtime(&mod)), 
"\n");
+                               time_t const mod = file.lastModified();
+                               string const mod_date = 
rtrim(asctime(gmtime(&mod)), "\n");
                                LYXERR(Debug::LYXVC, "Date in Entries: `" << 
file_date
                                        << "'\nModification date of file: `" << 
mod_date << '\'');
                                if (file.isReadOnly()) {
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to