mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-28 16:01:20 +02:00
use var passed by reference
Conflicts: src/gui/components/cc_frm.h src/gui/components/cc_frm_icons.cpp
This commit is contained in:
committed by
[CST] Focus
parent
e2bbf2aa44
commit
b386f7bbd2
@@ -91,10 +91,10 @@ class CConfigFile
|
||||
// vectors
|
||||
//
|
||||
std::vector <std::string> getStringVector(const std::string & key);
|
||||
void setStringVector(const std::string & key, const std::vector<std::string> vec);
|
||||
void setStringVector(const std::string & key, const std::vector<std::string> &vec);
|
||||
|
||||
std::vector <int32_t> getInt32Vector(const std::string & key);
|
||||
void setInt32Vector(const std::string & key, const std::vector<int32_t> vec);
|
||||
void setInt32Vector(const std::string & key, const std::vector<int32_t> &vec);
|
||||
|
||||
//
|
||||
// flags
|
||||
|
Reference in New Issue
Block a user