@@ -66,15 +66,15 @@ * If the value is not OFSize-sized, @ref OFOutOfRangeException is thrown. */ @property (readonly, nonatomic) OFSize sizeValue; /** - * @brief The value as a rectangle. + * @brief The value as a OFRect. * - * If the value is not rectangle-sized, @ref OFOutOfRangeException is thrown. + * If the value is not OFRect-sized, @ref OFOutOfRangeException is thrown. */ -@property (readonly, nonatomic) of_rectangle_t rectangleValue; +@property (readonly, nonatomic) OFRect rectValue; /** * @brief Creates a new, autorelease OFValue with the specified bytes of the * specified type. * @@ -133,14 +133,14 @@ /** * @brief Creates a new, autoreleased OFValue containing the specified * rectangle. * - * @param rectangle The rectangle the OFValue should contain + * @param rect The rectangle the OFValue should contain * @return A new, autoreleased OFValue */ -+ (instancetype)valueWithRectangle: (of_rectangle_t)rectangle; ++ (instancetype)valueWithRect: (OFRect)rect; /** * @brief Initializes an already allocated OFValue with the specified bytes of * the specified type. *