Kaydet (Commit) 38ee77e5 authored tarafından Caolán McNamara's avatar Caolán McNamara

we can't use untranslatable strings here

and drop the now unused helpid

Change-Id: I38fb93e50e7715e05f21e08c2e8714a1a52305b8
üst ad5f3074
...@@ -61,7 +61,6 @@ ...@@ -61,7 +61,6 @@
#define HID_BIB_CONTROL_PARENT "EXTENSIONS_HID_BIB_CONTROL_PARENT" #define HID_BIB_CONTROL_PARENT "EXTENSIONS_HID_BIB_CONTROL_PARENT"
#define UID_BIB_FRAME_WINDOW "EXTENSIONS_UID_BIB_FRAME_WINDOW" #define UID_BIB_FRAME_WINDOW "EXTENSIONS_UID_BIB_FRAME_WINDOW"
#define HID_BIB_DB_GRIDCTRL "EXTENSIONS_HID_BIB_DB_GRIDCTRL" #define HID_BIB_DB_GRIDCTRL "EXTENSIONS_HID_BIB_DB_GRIDCTRL"
#define HID_DLG_MAPPING "EXTENSIONS_HID_DLG_MAPPING"
#endif // EXTENSIONS_BIBLIOGRAPHY_HRC #endif // EXTENSIONS_BIBLIOGRAPHY_HRC
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
// Strings (500) // Strings (500)
#define RID_BIB_STRING (RID_BIB_START + 200) #define RID_BIB_STRING (RID_BIB_START + 200)
// FREE (RID_BIB_STRING + 1) #define RID_BIB_STR_NONE (RID_BIB_STRING + 1)
#define RID_BIB_STR_FIELDSELECTION (RID_BIB_STRING + 2) #define RID_BIB_STR_FIELDSELECTION (RID_BIB_STRING + 2)
#define RID_BIB_STR_TABWIN_PREFIX (RID_BIB_STRING + 3) #define RID_BIB_STR_TABWIN_PREFIX (RID_BIB_STRING + 3)
#define RID_BIB_STR_FRAME_TITLE (RID_BIB_STRING + 4) #define RID_BIB_STR_FRAME_TITLE (RID_BIB_STRING + 4)
......
...@@ -36,4 +36,9 @@ String RID_MAP_QUESTION ...@@ -36,4 +36,9 @@ String RID_MAP_QUESTION
Text [ en-US ] = "Do you want to edit the column arrangement?"; Text [ en-US ] = "Do you want to edit the column arrangement?";
}; };
String RID_BIB_STR_NONE
{
Text [ en-US ] = "<none>";
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -254,11 +254,11 @@ static sal_uInt16 lcl_FindLogicalName(BibConfig* pConfig , ...@@ -254,11 +254,11 @@ static sal_uInt16 lcl_FindLogicalName(BibConfig* pConfig ,
return USHRT_MAX; return USHRT_MAX;
} }
MappingDialog_Impl::MappingDialog_Impl(Window* pParent, BibDataManager* pMan) : MappingDialog_Impl::MappingDialog_Impl(Window* pParent, BibDataManager* pMan)
ModalDialog(pParent, "MappingDialog", "modules/sbibliography/ui/mappingdialog.ui" ), : ModalDialog(pParent, "MappingDialog", "modules/sbibliography/ui/mappingdialog.ui")
pDatMan(pMan), , pDatMan(pMan)
sNone("<none>"), , sNone(BIB_RESSTR(RID_BIB_STR_NONE))
bModified(false) , bModified(false)
{ {
get(pOKBT, "ok"); get(pOKBT, "ok");
get(pIdentifierLB, "identifierCombobox"); get(pIdentifierLB, "identifierCombobox");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment