Kaydet (Commit) c199fc5a authored tarafından Miklos Vajna's avatar Miklos Vajna

svx: fix loplugin:staticmethods warnings

Change-Id: I1b9a0a01f88e8faf6a8973848598b77dee10a14d
üst 8a2bbf1d
......@@ -153,13 +153,13 @@ public:
// If the number of selected objects exceeds the value set here,
// NoDragPolys is (temporarily) activated implicitly.
// PolyPolygons etc. are regarded as multiple objects respectively.
size_t GetDragXorPolyLimit() const { return eDragXorPolyLimit; }
static size_t GetDragXorPolyLimit() { return eDragXorPolyLimit; }
// Like DragXorPolyLimit, but in respect to the total number of
// all polygons.
// NoDragPolys is (temporarily) activated, if one of the limits
// is exceeded.
size_t GetDragXorPointLimit() const { return eDragXorPointLimit; }
static size_t GetDragXorPointLimit() { return eDragXorPointLimit; }
void SetSolidDragging(bool bOn);
bool IsSolidDragging() const;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment