freebsd-ports/games/gtkradiant/files/patch-radiant__brushmanip.cpp
Alejandro Pulver 653ff4f6f5 - Fix building with GCC 4.x.
Reported by:	pointyhat
2006-12-17 20:40:16 +00:00

11 lines
309 B
C++

--- radiant/brushmanip.cpp.orig Sat Feb 11 20:57:16 2006
+++ radiant/brushmanip.cpp Sun Dec 17 17:03:49 2006
@@ -416,7 +416,7 @@
}
void visit(FaceInstance& face) const
{
- if(face.isSelected(SelectionSystem::eFace))
+ if(face.isSelected())
{
m_visitor.visit(face.getFace());
}