diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-21 18:53:30 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-21 18:53:30 +0800 |
commit | 6f7cfa3f167920ca1e38a0b9bee2cf373431e980 (patch) | |
tree | 45b86fc4a63fa7fd80da4894b366e0161243e683 | |
parent | 44a6f010a4f7a699bdda5071c4de981499b544c1 (diff) |
Revert "Send nullptrs when receiving empty strings"
This reverts commit 44a6f010a4f7a699bdda5071c4de981499b544c1.
-rw-r--r-- | member.cxx | 27 |
1 files changed, 9 insertions, 18 deletions
@@ -348,24 +348,15 @@ namespace QInterchange { QString const& state, QString const& zip, QString const& email, QString const& phoneDay) { - interchange_member_setaccount(firstName == "" - ? nullptr : firstName.toLatin1().constData(), - lastName == "" - ? nullptr : lastName.toLatin1().constData(), - address1 == "" - ? nullptr : address1.toLatin1().constData(), - address2 == "" - ? nullptr : address2.toLatin1(). constData(), - city == "" - ? nullptr : city.toLatin1(). constData(), - state == "" - ? nullptr : state.toLatin1(). constData(), - zip == "" - ? nullptr : zip.toLatin1(). constData(), - email == "" - ? nullptr : email.toLatin1(). constData(), - phoneDay == "" - ? nullptr : phoneDay.toLatin1().constData()); + interchange_member_setaccount(firstName.toLatin1().constData(), + lastName.toLatin1().constData(), + address1.toLatin1().constData(), + address2.toLatin1().constData(), + city.toLatin1().constData(), + state.toLatin1().constData(), + zip.toLatin1().constData(), + email.toLatin1().constData(), + phoneDay.toLatin1().constData()); } void Member::changePassword(QString const& passwordOld, QString const& password, |