diff options
Diffstat (limited to 'client/collapser.cc')
-rw-r--r-- | client/collapser.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/collapser.cc b/client/collapser.cc index abbe295..802c4a7 100644 --- a/client/collapser.cc +++ b/client/collapser.cc @@ -173,14 +173,14 @@ void Collapser::Placeholder::grabFrom(QWidget *w) { weight = 0; // Reset - pixmap_from = grab(w, from_height, width()); + pixmap_from = ::grab(w, from_height, width()); } void Collapser::Placeholder::grabTo(QWidget *w) { weight = 0; // Reset - pixmap_to = grab(w, to_height, width()); + pixmap_to = ::grab(w, to_height, width()); } void Collapser::Placeholder::setWeight(double w) |