diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-05-11 05:53:34 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-05-11 05:53:34 (GMT) |
commit | 692931ae2fec4fa8fc4ebcbcff20c952d6319536 (patch) | |
tree | f962585a77c22a6cd77465a52b7dbc66aa0bdca8 /src/declarative/fx/qfxanchors_p.h | |
parent | 447b79e7c497c93429c25d883dfac954868483a2 (diff) | |
download | Qt-692931ae2fec4fa8fc4ebcbcff20c952d6319536.zip Qt-692931ae2fec4fa8fc4ebcbcff20c952d6319536.tar.gz Qt-692931ae2fec4fa8fc4ebcbcff20c952d6319536.tar.bz2 |
Add support for removing anchors.
This makes it possible to remove an anchor that was previously set.
Trying to set a new anchor after one was removed isn't working yet.
Diffstat (limited to 'src/declarative/fx/qfxanchors_p.h')
-rw-r--r-- | src/declarative/fx/qfxanchors_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/fx/qfxanchors_p.h b/src/declarative/fx/qfxanchors_p.h index 76f83a8..82c2086 100644 --- a/src/declarative/fx/qfxanchors_p.h +++ b/src/declarative/fx/qfxanchors_p.h @@ -77,8 +77,8 @@ public: bool checkVValid() const; bool checkHAnchorValid(QFxAnchorLine anchor) const; bool checkVAnchorValid(QFxAnchorLine anchor) const; - void connectHHelper(const QFxAnchorLine &anchorLine, const char *slotString); - void connectVHelper(const QFxAnchorLine &anchorLine, const char *slotString); + void connectHHelper(const QFxAnchorLine &anchorLine); + void connectVHelper(const QFxAnchorLine &anchorLine); bool calcStretch(const QFxAnchorLine &edge1, const QFxAnchorLine &edge2, int offset1, int offset2, QFxAnchorLine::AnchorLine line, int &stretch); QFxItem *item; |