diff options
Diffstat (limited to 'src/BorderTheme.cc')
-rw-r--r-- | src/BorderTheme.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/BorderTheme.cc b/src/BorderTheme.cc new file mode 100644 index 0000000..510d44a --- /dev/null +++ b/src/BorderTheme.cc | |||
@@ -0,0 +1,7 @@ | |||
1 | #include "BorderTheme.hh" | ||
2 | |||
3 | BorderTheme::BorderTheme(FbTk::Theme &theme, const std::string &name, | ||
4 | const std::string &altname): | ||
5 | m_width(theme, name + ".borderWidth", altname + ".BorderWidth"), | ||
6 | m_color(theme, name + ".borderColor", altname + ".BorderColor") { | ||
7 | } | ||