mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 00:41:09 +02:00
use var passed by reference
Conflicts:
src/gui/components/cc_frm.h
src/gui/components/cc_frm_icons.cpp
Origin commit data
------------------
Branch: ni/coolstream
Commit: b386f7bbd2
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2013-04-18 (Thu, 18 Apr 2013)
------------------
This commit was generated by Migit
This commit is contained in:
committed by
[CST] Focus
parent
45f1c9f9f0
commit
a1e42e4c41
@@ -394,7 +394,7 @@ void CConfigFile::setString(const std::string & key, const std::string & val)
|
||||
unknownKeyQueryedFlag = tmpUnknownKeyQueryedFlag;
|
||||
}
|
||||
|
||||
void CConfigFile::setInt32Vector(const std::string & key, const std::vector<int32_t> vec)
|
||||
void CConfigFile::setInt32Vector(const std::string & key, const std::vector<int32_t> &vec)
|
||||
{
|
||||
bool tmpUnknownKeyQueryedFlag = unknownKeyQueryedFlag;
|
||||
unknownKeyQueryedFlag = false;
|
||||
@@ -419,7 +419,7 @@ void CConfigFile::setInt32Vector(const std::string & key, const std::vector<int3
|
||||
unknownKeyQueryedFlag = tmpUnknownKeyQueryedFlag;
|
||||
}
|
||||
|
||||
void CConfigFile::setStringVector(const std::string & key, const std::vector<std::string> vec)
|
||||
void CConfigFile::setStringVector(const std::string & key, const std::vector<std::string> &vec)
|
||||
{
|
||||
bool tmpUnknownKeyQueryedFlag = unknownKeyQueryedFlag;
|
||||
unknownKeyQueryedFlag = false;
|
||||
|
Reference in New Issue
Block a user