aboutsummaryrefslogtreecommitdiff
path: root/src/BorderTheme.cc
blob: 02faf0554fc3cdc544f9b00a771248bab561ebd9 (plain)
1
2
3
4
5
6
7
8
9
#include "BorderTheme.hh"

BorderTheme::BorderTheme(FbTk::Theme &theme, const std::string &name,
                         const std::string &altname):
    m_width(theme, name + ".borderWidth", altname + ".BorderWidth"),
    m_color(theme, name + ".borderColor", altname + ".BorderColor") {

    *m_width = 0;
}