summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-05-09 21:33:00 +0200
committerCarl Hetherington <cth@carlh.net>2024-05-25 01:30:31 +0200
commite38123db163b3a9722b0a82af813fb2e4fa41e76 (patch)
tree24c881a062e5f881d75f13cbfdb25da8e44c6bed /src
parent9a2c81f1355f2c7e5f9f317176fdafe8e33cf078 (diff)
Cleanup: make method private.
Diffstat (limited to 'src')
-rw-r--r--src/lib/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/config.h b/src/lib/config.h
index 67c784620..b62c38116 100644
--- a/src/lib/config.h
+++ b/src/lib/config.h
@@ -1272,7 +1272,6 @@ public:
bool existing_template (std::string name) const;
std::list<std::string> templates () const;
boost::filesystem::path template_read_path (std::string name) const;
- boost::filesystem::path template_write_path (std::string name) const;
void rename_template (std::string old_name, std::string new_name) const;
void delete_template (std::string name) const;
@@ -1318,6 +1317,7 @@ private:
void add_to_history_internal (std::vector<boost::filesystem::path>& h, boost::filesystem::path p);
void clean_history_internal (std::vector<boost::filesystem::path>& h);
void backup ();
+ boost::filesystem::path template_write_path(std::string name) const;
/** number of threads which a master DoM should use for J2K encoding on the local machine */
int _master_encoding_threads;