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 @@
#define HID_BIB_CONTROL_PARENT "EXTENSIONS_HID_BIB_CONTROL_PARENT"
#define UID_BIB_FRAME_WINDOW "EXTENSIONS_UID_BIB_FRAME_WINDOW"
#define HID_BIB_DB_GRIDCTRL "EXTENSIONS_HID_BIB_DB_GRIDCTRL"
#define HID_DLG_MAPPING "EXTENSIONS_HID_DLG_MAPPING"
#endif // EXTENSIONS_BIBLIOGRAPHY_HRC
......
......@@ -41,7 +41,7 @@
// Strings (500)
#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_TABWIN_PREFIX (RID_BIB_STRING + 3)
#define RID_BIB_STR_FRAME_TITLE (RID_BIB_STRING + 4)
......
......@@ -36,4 +36,9 @@ String RID_MAP_QUESTION
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: */
......@@ -254,11 +254,11 @@ static sal_uInt16 lcl_FindLogicalName(BibConfig* pConfig ,
return USHRT_MAX;
}
MappingDialog_Impl::MappingDialog_Impl(Window* pParent, BibDataManager* pMan) :
ModalDialog(pParent, "MappingDialog", "modules/sbibliography/ui/mappingdialog.ui" ),
pDatMan(pMan),
sNone("<none>"),
bModified(false)
MappingDialog_Impl::MappingDialog_Impl(Window* pParent, BibDataManager* pMan)
: ModalDialog(pParent, "MappingDialog", "modules/sbibliography/ui/mappingdialog.ui")
, pDatMan(pMan)
, sNone(BIB_RESSTR(RID_BIB_STR_NONE))
, bModified(false)
{
get(pOKBT, "ok");
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