diff options
author | Jason Glasgow <jglasgow@google.com> | 2011-03-31 15:29:12 -0500 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2011-03-31 15:29:12 -0500 |
commit | 2dbca0baf853bea1df0723d3c8fb2f94dadf3eb3 (patch) | |
tree | 408d70f159e44dff00eaea56335b08b2af2b5a87 /src/mm-modem.h | |
parent | 68038cb92627f6ea012ffca6f11ce9279432af07 (diff) |
core: make modem StateChanged signal consistent with API documentation
The new and old state arguments were flipped.
Diffstat (limited to 'src/mm-modem.h')
-rw-r--r-- | src/mm-modem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mm-modem.h b/src/mm-modem.h index 7f0bf58d..c478f701 100644 --- a/src/mm-modem.h +++ b/src/mm-modem.h @@ -207,8 +207,8 @@ struct _MMModem { /* Signals */ void (*state_changed) (MMModem *self, - MMModemState new_state, MMModemState old_state, + MMModemState new_state, MMModemStateReason reason); }; |