summaryrefslogtreecommitdiff
path: root/recman.h
diff options
context:
space:
mode:
authorJasmin Jessich <jasmin@anw.at>2017-06-12 23:13:27 +0200
committerJasmin Jessich <jasmin@anw.at>2017-06-15 23:57:09 +0200
commitf8830e4141ebcad6e4f1b06104d44eb83830a771 (patch)
treeab509b7054ac54f348fce47734b6fe726378c3b4 /recman.h
parent7419b1f522612cd05d1d9995bf355d728d9a7e5a (diff)
downloadvdr-plugin-live-f8830e4141ebcad6e4f1b06104d44eb83830a771.tar.gz
vdr-plugin-live-f8830e4141ebcad6e4f1b06104d44eb83830a771.tar.bz2
Patched with live-fix-recording-indentation.diff
- Got the patch from Frank Neumann per eMail. Adds an indention per directory to the recordings view. Original was from here (level.diff): http://www.vdr-portal.de/board17-developer/board21-vdr-plugins/p1260210-live-plugin-einr%C3%BCcken-von-unterverzeichnissen/#post1260210
Diffstat (limited to 'recman.h')
-rw-r--r--recman.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/recman.h b/recman.h
index d9810b9..c5a5fbb 100644
--- a/recman.h
+++ b/recman.h
@@ -179,8 +179,10 @@ namespace vdrlive {
RecordingsMap::const_iterator begin() const { return m_entries.begin(); }
RecordingsMap::const_iterator end() const { return m_entries.end(); }
+ int Level() { return m_level; }
private:
+ int m_level;
std::string m_name;
RecordingsMap m_entries;
RecordingsItemWeakPtr m_parent;