소스 검색

Add comments

Ivan Savenko 1 년 전
부모
커밋
4ff2894cf2
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      client/gui/CIntObject.h

+ 3 - 0
client/gui/CIntObject.h

@@ -220,5 +220,8 @@ public:
 	~ObjectConstruction();
 };
 
+/// If used, all UI widgets created inside this scope will be added to children of 'this'
 #define OBJECT_CONSTRUCTION ObjectConstruction obj__i(this)
+
+/// If used, all UI widgets created inside this scope will be added to children of provided object
 #define OBJECT_CONSTRUCTION_TARGETED(obj) ObjectConstruction obj__i(obj)