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

fix build

Change-Id: I3616e62689246a091d9f26d69105a27f64553d48
üst 3a0889b9
...@@ -56,26 +56,26 @@ OUString const sData = "org.openoffice.UserProfile/Data"; ...@@ -56,26 +56,26 @@ OUString const sData = "org.openoffice.UserProfile/Data";
// vOptionNames[] -- names of the user option entries // vOptionNames[] -- names of the user option entries
// The order corresponds to the #define USER_OPT_* list in useroptions.hxx. // The order corresponds to the #define USER_OPT_* list in useroptions.hxx.
OUString const vOptionNames[] = { OUString const vOptionNames[] = {
"l", // USER_OPT_CITY OUString("l"), // USER_OPT_CITY
"o", // USER_OPT_COMPANY OUString("o"), // USER_OPT_COMPANY
"c", // USER_OPT_COUNTRY OUString("c"), // USER_OPT_COUNTRY
"mail", // USER_OPT_EMAIL OUString("mail"), // USER_OPT_EMAIL
"facsimiletelephonenumber", // USER_OPT_FAX OUString("facsimiletelephonenumber"), // USER_OPT_FAX
"givenname", // USER_OPT_FIRSTNAME OUString("givenname"), // USER_OPT_FIRSTNAME
"sn", // USER_OPT_LASTNAME OUString("sn"), // USER_OPT_LASTNAME
"position", // USER_OPT_POSITION OUString("position"), // USER_OPT_POSITION
"st", // USER_OPT_STATE OUString("st"), // USER_OPT_STATE
"street", // USER_OPT_STREET OUString("street"), // USER_OPT_STREET
"homephone", // USER_OPT_TELEPHONEHOME OUString("homephone"), // USER_OPT_TELEPHONEHOME
"telephonenumber", // USER_OPT_TELEPHONEWORK OUString("telephonenumber"), // USER_OPT_TELEPHONEWORK
"title", // USER_OPT_TITLE OUString("title"), // USER_OPT_TITLE
"initials", // USER_OPT_ID OUString("initials"), // USER_OPT_ID
"postalcode", // USER_OPT_ZIP OUString("postalcode"), // USER_OPT_ZIP
"fathersname", // USER_OPT_FATHERSNAME OUString("fathersname"), // USER_OPT_FATHERSNAME
"apartment", // USER_OPT_APARTMENT OUString("apartment"), // USER_OPT_APARTMENT
"customernumber", // USER_OPT_CUSTOMERNUMBER OUString("customernumber") // USER_OPT_CUSTOMERNUMBER
}; };
unsigned const nOptionNameCount = sizeof vOptionNames / sizeof vOptionNames[0]; const sal_uInt16 nOptionNameCount = SAL_N_ELEMENTS(vOptionNames);
} // namespace } // namespace
......
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