summaryrefslogtreecommitdiffstats
path: root/src/call-volume.c
AgeCommit message (Collapse)AuthorFilesLines
2012-05-20Do not set signature and reply in GDBus tablesLucas De Marchi1-5/+5
Use GDBUS_* macros, so signature and reply fields are not set in each method/signal.
2012-05-20Convert GDBus methods to use macro helpersLucas De Marchi1-4/+8
With these macro helpers we can separate in/out arguments and use their own vector.
2012-05-20Constify GDBus signal tablesHenrique Dante de Almeida1-1/+1
Constify signal tables with the following command: find . -name '*.[ch]' -exec \ sed -i 's/\(GDBusSignalTable .* =\)/const \1/g' {} \;
2012-05-20Constify GDBus method tablesHenrique Dante de Almeida1-1/+1
Constify method tables with the following command: find . -name '*.[ch]' -exec \ sed -i 's/\(GDBusMethodTable .* =\)/const \1/g' {} \;
2011-10-10core: Update copyright informationMarcel Holtmann1-1/+1
2011-02-02call-volume: Fix style issueAki Niemi1-1/+1
2010-11-29core: explicitly compare pointers to NULLLucas De Marchi1-3/+3
This patch was generated by the following semantic patch (http://coccinelle.lip6.fr/) // <smpl> @fix disable is_null,isnt_null1@ expression *E; @@ - !E + E == NULL // </smpl>
2010-11-26call-volume: Minor coding style fixJeevaka Badrappan1-2/+1
2010-11-26call-volume: Remove extra line at EOFJeevaka Badrappan1-1/+0
2010-11-26call-volume: Fix dbus error message typeJeevaka Badrappan1-3/+3
2010-03-22Move call volume interface definition to dbus.hDenis Kenzior1-13/+17
2010-01-01Update copyright informationMarcel Holtmann1-1/+1
2009-11-11Fix: Invoke microphone_volume, not speakerZhenhua Zhang1-1/+1
2009-09-29Fix: different signedness comparisonDenis Kenzior1-1/+1
2009-09-29Fix: Don't try to set a value if already setDenis Kenzior1-0/+9
2009-09-29Add Muted property to CallVolume atomDenis Kenzior1-0/+66
2009-09-29Refactor: Call Volume set_property handlingDenis Kenzior1-71/+59
2009-09-29Get rid of unused defineDenis Kenzior1-2/+0
2009-09-29Get rid of unused variablesDenis Kenzior1-2/+0
2009-09-29Refactor: Assume driver will set call volumeDenis Kenzior1-3/+0
Driver should use the ofono_call_volume_set_microphone_volume and ofono_call_volume_set_speaker_volume functions.
2009-09-29Don't use ofono_ prefix for static functionsDenis Kenzior1-11/+8
2009-09-29Refactor: Break up call volume notifyDenis Kenzior1-14/+24
2009-09-29Cleanup: Do not expose DBus details to driversDenis Kenzior1-4/+4
2009-09-29Add call volume interface to adjust speaker and mic volumeZhenhua Zhang1-0/+366