summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cd-common.c2
-rw-r--r--src/cd-profile.c2
-rw-r--r--src/cd-sensor-client.c2
-rw-r--r--src/cd-sensor.c2
-rw-r--r--src/org.freedesktop.ColorManager.Device.xml6
-rw-r--r--src/org.freedesktop.ColorManager.Profile.xml2
-rw-r--r--src/org.freedesktop.ColorManager.Sensor.xml2
-rw-r--r--src/org.freedesktop.ColorManager.xml4
-rw-r--r--src/sensors/argyll/cd-spawn.c4
-rw-r--r--src/sensors/dtp94/dtp94-device.c2
10 files changed, 14 insertions, 14 deletions
diff --git a/src/cd-common.c b/src/cd-common.c
index 1361f23..413d0e3 100644
--- a/src/cd-common.c
+++ b/src/cd-common.c
@@ -198,7 +198,7 @@ cd_main_sender_authenticated (GDBusConnection *connection,
gboolean
cd_main_mkdir_with_parents (const gchar *filename, GError **error)
{
- /* ensure desination exists */
+ /* ensure destination exists */
if (!g_file_test (filename, G_FILE_TEST_EXISTS)) {
g_autoptr(GFile) file = NULL;
file = g_file_new_for_path (filename);
diff --git a/src/cd-profile.c b/src/cd-profile.c
index 7d722fe..cb3f6ff 100644
--- a/src/cd-profile.c
+++ b/src/cd-profile.c
@@ -1052,7 +1052,7 @@ cd_profile_load_from_filename (CdProfile *profile, const gchar *filename, GError
g_set_error (error,
CD_PROFILE_ERROR,
CD_PROFILE_ERROR_FAILED_TO_READ,
- "failed to create mapped file from filname %s",
+ "failed to create mapped file from filename %s",
filename);
return FALSE;
}
diff --git a/src/cd-sensor-client.c b/src/cd-sensor-client.c
index 6252838..7feb261 100644
--- a/src/cd-sensor-client.c
+++ b/src/cd-sensor-client.c
@@ -110,7 +110,7 @@ cd_sensor_client_add (CdSensorClient *sensor_client,
/* load the sensor */
ret = cd_sensor_load (sensor, &error);
if (!ret) {
- /* not fatal, non-native devices are still useable */
+ /* not fatal, non-native devices are still usable */
g_debug ("CdSensorClient: failed to load native sensor: %s",
error->message);
g_clear_error (&error);
diff --git a/src/cd-sensor.c b/src/cd-sensor.c
index a35c57f..64a8d17 100644
--- a/src/cd-sensor.c
+++ b/src/cd-sensor.c
@@ -1379,7 +1379,7 @@ cd_sensor_set_from_device (CdSensor *sensor,
}
}
- /* is the sensor embeded, e.g. on the W700? */
+ /* is the sensor embedded, e.g. on the W700? */
if (g_udev_device_get_property_as_boolean (device, "COLORD_SENSOR_EMBEDDED"))
priv->embedded = TRUE;
diff --git a/src/org.freedesktop.ColorManager.Device.xml b/src/org.freedesktop.ColorManager.Device.xml
index cc67d44..91e08db 100644
--- a/src/org.freedesktop.ColorManager.Device.xml
+++ b/src/org.freedesktop.ColorManager.Device.xml
@@ -6,7 +6,7 @@
<doc:doc>
<doc:description>
<doc:para>
- The interface used for quering color parameters for a specific device.
+ The interface used for querying color parameters for a specific device.
</doc:para>
</doc:description>
</doc:doc>
@@ -309,7 +309,7 @@
</doc:para>
The default option is <doc:tt>hard</doc:tt>, and this
means that the user has explicitly mapped a profile to
- a device, and this should take precidence over any
+ a device, and this should take precedence over any
<doc:tt>soft</doc:tt> profiles.
</doc:para>
<doc:para>
@@ -348,7 +348,7 @@
If the profile was automatically added due to metadata in
the profile (e.g. the profile was created for the device)
then manually removing the profile will cause this metadata
- add to be supressed.
+ add to be suppressed.
This allows the user to remove old or obsolete profiles
from any color control panel without having to delete them.
</doc:para>
diff --git a/src/org.freedesktop.ColorManager.Profile.xml b/src/org.freedesktop.ColorManager.Profile.xml
index c38ec89..70a53c1 100644
--- a/src/org.freedesktop.ColorManager.Profile.xml
+++ b/src/org.freedesktop.ColorManager.Profile.xml
@@ -6,7 +6,7 @@
<doc:doc>
<doc:description>
<doc:para>
- The interface used for quering color profiles.
+ The interface used for querying color profiles.
</doc:para>
</doc:description>
</doc:doc>
diff --git a/src/org.freedesktop.ColorManager.Sensor.xml b/src/org.freedesktop.ColorManager.Sensor.xml
index 226fa91..e66418c 100644
--- a/src/org.freedesktop.ColorManager.Sensor.xml
+++ b/src/org.freedesktop.ColorManager.Sensor.xml
@@ -6,7 +6,7 @@
<doc:doc>
<doc:description>
<doc:para>
- The interface used for quering color sensors.
+ The interface used for querying color sensors.
</doc:para>
</doc:description>
</doc:doc>
diff --git a/src/org.freedesktop.ColorManager.xml b/src/org.freedesktop.ColorManager.xml
index 3b547e0..c9aa59a 100644
--- a/src/org.freedesktop.ColorManager.xml
+++ b/src/org.freedesktop.ColorManager.xml
@@ -6,7 +6,7 @@
<doc:doc>
<doc:description>
<doc:para>
- The interface used for quering color parameters for the system.
+ The interface used for querying color parameters for the system.
</doc:para>
</doc:description>
</doc:doc>
@@ -513,7 +513,7 @@
<doc:description>
<doc:para>
Creates a profile without using a file descriptor.
- It is recomended you use CreateProfileWithFd() as the
+ It is recommended you use CreateProfileWithFd() as the
daemon may not be running as root and have read access
to profiles in the users home directory.
</doc:para>
diff --git a/src/sensors/argyll/cd-spawn.c b/src/sensors/argyll/cd-spawn.c
index 7989eb4..9a95b9f 100644
--- a/src/sensors/argyll/cd-spawn.c
+++ b/src/sensors/argyll/cd-spawn.c
@@ -295,7 +295,7 @@ cd_spawn_is_running (CdSpawn *spawn)
*
* We send SIGQUIT and after a few ms SIGKILL (if allowed)
*
- * IMPORTANT: This is not a syncronous operation, and client programs will need
+ * IMPORTANT: This is not a synchronous operation, and client programs will need
* to wait for the ::exit signal.
**/
gboolean
@@ -419,7 +419,7 @@ cd_spawn_argv (CdSpawn *spawn, gchar **argv, gchar **envp, GError **error)
return FALSE;
}
- /* install an idle handler to check if the child returnd successfully. */
+ /* install an idle handler to check if the child returned successfully. */
rc = fcntl (spawn->priv->stdout_fd, F_SETFL, O_NONBLOCK);
if (rc < 0) {
g_set_error_literal (error, 1, 0, "stdout fcntl failed");
diff --git a/src/sensors/dtp94/dtp94-device.c b/src/sensors/dtp94/dtp94-device.c
index 65ee254..e3ba530 100644
--- a/src/sensors/dtp94/dtp94-device.c
+++ b/src/sensors/dtp94/dtp94-device.c
@@ -224,7 +224,7 @@ dtp94_device_setup (GUsbDevice *device, GError **error)
if (!dtp94_device_send_cmd (device, "0207CF\r", error))
return FALSE;
- /* set delimeter to CR */
+ /* set delimiter to CR */
if (!dtp94_device_send_cmd (device, "0008CF\r", error))
return FALSE;