X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ffont-run.h;h=ebfe51ae67bbee07a87df498bee80845d5a55408;hb=905bc5519245079bfbf1cfd30fa224095fa12375;hp=8190fcd08439d56788f2e5b3464e6ddf6d1a078e;hpb=d82494a77e405d5924cf1af3fe55b2d9b9577e3f;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/font-run.h b/dali-toolkit/internal/text/font-run.h index 8190fcd..ebfe51a 100644 --- a/dali-toolkit/internal/text/font-run.h +++ b/dali-toolkit/internal/text/font-run.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_TEXT_FONT_RUN_H /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2021 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,22 +23,19 @@ namespace Dali { - namespace Toolkit { - namespace Text { - /** * @brief Run of characters with the same font. */ struct FontRun { - CharacterRun characterRun; ///< The initial character index and the number of characters of the run. - FontId fontId; ///< Font id of the run. - bool isItalicRequired:1; ///< Whether the italic style is required. - bool isBoldRequired:1; ///< Whether the bold style is required. + CharacterRun characterRun; ///< The initial character index and the number of characters of the run. + FontId fontId; ///< Font id of the run. + bool isItalicRequired : 1; ///< Whether the italic style is required. + bool isBoldRequired : 1; ///< Whether the bold style is required. }; } // namespace Text