Searched refs:fReplyPreamble (Results 1 - 6 of 6) sorted by relevance

/haiku/src/apps/mail/
H A DSettings.h97 BString fReplyPreamble; member in class:Settings
H A DMailApp.h131 char* fReplyPreamble; member in class:TMailApp
H A DSettings.cpp69 fReplyPreamble(),
207 settings.AddString("ReplyPreamble", fReplyPreamble);
308 fReplyPreamble = string;
340 return BString(fReplyPreamble);
H A DMailApp.cpp128 fReplyPreamble = strdup(B_TRANSLATE("%e wrote:\\n"));
328 &fReplyPreamble, &fSignature, &fMailCharacterSet,
900 free(fReplyPreamble);
901 fReplyPreamble = (char *)malloc(length + 1);
902 if (fReplyPreamble == NULL)
905 file.Read(fReplyPreamble, length);
906 fReplyPreamble[length] = '\0';
960 settings.AddString("ReplyPreamble", fReplyPreamble);
1075 free(fReplyPreamble);
1076 fReplyPreamble
[all...]
H A DPrefs.cpp219 fReplyPreamble = new BTextControl("replytext",
222 fReplyPreamble->SetAlignment(B_ALIGN_RIGHT, B_ALIGN_LEFT);
228 mailLayout->AddItem(fReplyPreamble->CreateLabelLayoutItem(), 0, layoutRow);
229 mailLayout->AddItem(fReplyPreamble->CreateTextViewLayoutItem(), 1,
300 if (strcmp(fReplyPreamble->Text(), *fNewPreamble)) {
303 = (char *)malloc(strlen(fReplyPreamble->Text()) + 1);
304 strcpy(*fNewPreamble, fReplyPreamble->Text());
386 if (strcmp(fReplyPreamble->Text(), *fNewPreamble))
387 fReplyPreamble->SetText(*fNewPreamble);
470 BTextView *text = fReplyPreamble
[all...]
H A DPrefs.h134 BTextControl* fReplyPreamble; member in class:TPrefsWindow

Completed in 77 milliseconds