Searched refs:fUseAccountFrom (Results 1 - 4 of 4) sorted by relevance

/haiku/src/apps/mail/
H A DSettings.cpp78 fUseAccountFrom(0),
205 settings.AddInt32("UseAccountFrom", fUseAccountFrom);
300 fUseAccountFrom = int32Value;
301 if (fUseAccountFrom < ACCOUNT_USE_DEFAULT
302 || fUseAccountFrom > ACCOUNT_FROM_MAIL)
303 fUseAccountFrom = ACCOUNT_USE_DEFAULT;
412 return fUseAccountFrom;
H A DSettings.h106 int32 fUseAccountFrom; member in class:Settings
H A DMailApp.h140 int32 fUseAccountFrom; member in class:TMailApp
H A DMailApp.cpp327 &fColoredQuotes, &fDefaultAccount, &fUseAccountFrom,
892 if (file.Read(&fUseAccountFrom, sizeof(int32)) < (ssize_t)sizeof(int32)
893 || fUseAccountFrom < ACCOUNT_USE_DEFAULT
894 || fUseAccountFrom > ACCOUNT_FROM_MAIL)
895 fUseAccountFrom = ACCOUNT_USE_DEFAULT;
958 settings.AddInt32("UseAccountFrom", fUseAccountFrom);
1066 fUseAccountFrom = int32Value;
1067 if (fUseAccountFrom < ACCOUNT_USE_DEFAULT
1068 || fUseAccountFrom > ACCOUNT_FROM_MAIL)
1069 fUseAccountFrom
[all...]

Completed in 23 milliseconds