]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/graphic.cpp
Rework event passing system to allow for pointer grabs
[libs/gltk.git] / source / graphic.cpp
index 99defc7627a97749718dcefc4eed71964ae415e3..d05123ab890f0f342f858840f97f82cc4e68a6c0 100644 (file)
@@ -64,14 +64,6 @@ void Graphic::render(unsigned wd, unsigned ht) const
 }
 
 
-Graphic::Sides::Sides():
-       top(0),
-       right(0),
-       bottom(0),
-       left(0)
-{ }
-
-
 Graphic::Loader::Loader(Graphic &g):
        graph(g)
 {
@@ -102,15 +94,5 @@ void Graphic::Loader::shadow()
        load_sub(graph.shadow);
 }
 
-
-Graphic::Sides::Loader::Loader(Sides &s):
-       sides(s)
-{
-       add("top",    &Sides::top);
-       add("right",  &Sides::right);
-       add("bottom", &Sides::bottom);
-       add("left",   &Sides::left);
-}
-
 } // namespace GLtk
 } // namespace Msp