diff options
-rw-r--r-- | sw/inc/strings.hrc | 1 | ||||
-rw-r--r-- | sw/source/uibase/utlui/attrdesc.cxx | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sw/inc/strings.hrc b/sw/inc/strings.hrc index 237a8f91c83a..f3b47ca33077 100644 --- a/sw/inc/strings.hrc +++ b/sw/inc/strings.hrc @@ -1112,6 +1112,7 @@ #define STR_FRM_MINHEIGHT NC_("STR_FRM_MINHEIGHT", "Min. height:") #define STR_FLY_AT_PARA NC_("STR_FLY_AT_PARA", "to paragraph") #define STR_FLY_AS_CHAR NC_("STR_FLY_AS_CHAR", "as character") +#define STR_FLY_AT_CHAR NC_("STR_FLY_AT_CHAR", "to character") #define STR_FLY_AT_PAGE NC_("STR_FLY_AT_PAGE", "to page") #define STR_POS_X NC_("STR_POS_X", "X Coordinate:") #define STR_POS_Y NC_("STR_POS_Y", "Y Coordinate:") diff --git a/sw/source/uibase/utlui/attrdesc.cxx b/sw/source/uibase/utlui/attrdesc.cxx index 6331992935c4..e20b38787f97 100644 --- a/sw/source/uibase/utlui/attrdesc.cxx +++ b/sw/source/uibase/utlui/attrdesc.cxx @@ -439,6 +439,9 @@ bool SwFormatAnchor::GetPresentation case RndStdIds::FLY_AS_CHAR: pId = STR_FLY_AS_CHAR; break; + case RndStdIds::FLY_AT_CHAR: + pId = STR_FLY_AT_CHAR; + break; case RndStdIds::FLY_AT_PAGE: pId = STR_FLY_AT_PAGE; break; |