Browse Source

Remove events used by the old datagrid element

Michael Ragazzon 1 year ago
parent
commit
60ea18e795
2 changed files with 1 additions and 11 deletions
  1. 0 5
      Include/RmlUi/Core/ID.h
  2. 1 6
      Source/Core/EventSpecification.cpp

+ 0 - 5
Include/RmlUi/Core/ID.h

@@ -249,11 +249,6 @@ enum class EventId : uint16_t {
 	Change,
 	Submit,
 	Tabchange,
-	Columnadd,
-	Rowadd,
-	Rowchange,
-	Rowremove,
-	Rowupdate,
 
 	NumDefinedIds,
 

+ 1 - 6
Source/Core/EventSpecification.cpp

@@ -75,15 +75,10 @@ namespace EventSpecificationInterface {
 			{EventId::Scroll        , "scroll"        , false , true  , DefaultActionPhase::None},
 			{EventId::Animationend  , "animationend"  , false , true  , DefaultActionPhase::None},
 			{EventId::Transitionend , "transitionend" , false , true  , DefaultActionPhase::None},
-		
+
 			{EventId::Change        , "change"        , false , true  , DefaultActionPhase::None},
 			{EventId::Submit        , "submit"        , true  , true  , DefaultActionPhase::None},
 			{EventId::Tabchange     , "tabchange"     , false , true  , DefaultActionPhase::None},
-			{EventId::Columnadd     , "columnadd"     , false , true  , DefaultActionPhase::None},
-			{EventId::Rowadd        , "rowadd"        , false , true  , DefaultActionPhase::None},
-			{EventId::Rowchange     , "rowchange"     , false , true  , DefaultActionPhase::None},
-			{EventId::Rowremove     , "rowremove"     , false , true  , DefaultActionPhase::None},
-			{EventId::Rowupdate     , "rowupdate"     , false , true  , DefaultActionPhase::None},
 			// clang-format on
 		};