]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/undo.cpp
Remove some dead/debug code
[xonotic/netradiant.git] / radiant / undo.cpp
index 9910fb98a1b68ac2bc7495b8af64eb0a492058a8..c2bbaf93e847e54894804e67940e12b30a3af838 100644 (file)
@@ -484,25 +484,3 @@ void mutate( unsigned int data ){
        m_state.test_data = data;
 }
 };
-
-#if 0
-
-class TestUndo
-{
-public:
-TestUndo(){
-       undoable_test test;
-       GlobalUndoSystem().begin( "bleh" );
-       test.mutate( 3 );
-       GlobalUndoSystem().begin( "blah" );
-       test.mutate( 4 );
-       GlobalUndoSystem().undo();
-       GlobalUndoSystem().undo();
-       GlobalUndoSystem().redo();
-       GlobalUndoSystem().redo();
-}
-};
-
-TestUndo g_TestUndo;
-
-#endif