]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/samples/ogl/ogledit/doc.cpp
Force size to integer coordinates in all cases.
[wxWidgets.git] / contrib / samples / ogl / ogledit / doc.cpp
index 97fb2b5a9f72c678e887d625ed228fcf5de489d8..833ab5c12acafeb8518ddfdab1804fa164588e66 100644 (file)
@@ -194,7 +194,7 @@ bool DiagramCommand::Do(void)
 {
   switch (cmd)
   {
 {
   switch (cmd)
   {
-    case OGLEDIT_CUT:
+    case wxID_CUT:
     {
       if (shape)
       {
     {
       if (shape)
       {
@@ -340,7 +340,7 @@ bool DiagramCommand::Undo(void)
 {
   switch (cmd)
   {
 {
   switch (cmd)
   {
-    case OGLEDIT_CUT:
+    case wxID_CUT:
     {
       if (shape)
       {
     {
       if (shape)
       {
@@ -428,7 +428,7 @@ void DiagramCommand::RemoveLines(wxShape *shape)
   while (node)
   {
     wxLineShape *line = (wxLineShape *)node->GetData();
   while (node)
   {
     wxLineShape *line = (wxLineShape *)node->GetData();
-    doc->GetCommandProcessor()->Submit(new DiagramCommand(_T("Cut"), OGLEDIT_CUT, doc, NULL, 0.0, 0.0, line->Selected(), line));
+    doc->GetCommandProcessor()->Submit(new DiagramCommand(_T("Cut"), wxID_CUT, doc, NULL, 0.0, 0.0, line->Selected(), line));
 
     node = shape->GetLines().GetFirst();
   }
 
     node = shape->GetLines().GetFirst();
   }