~ubuntu-branches/ubuntu/trusty/compiz/trusty

« back to all changes in this revision

Viewing changes to gtk/window-decorator/gwd-settings.c

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2013-08-22 06:58:07 UTC
  • mto: This revision was merged to the branch mainline in revision 3352.
  • Revision ID: package-import@ubuntu.com-20130822065807-17nlzez0d30y09so
Tags: upstream-0.9.10+13.10.20130822
ImportĀ upstreamĀ versionĀ 0.9.10+13.10.20130822

Show diffs side-by-side

added added

removed removed

Lines of Context:
534
534
gwd_settings_freeze_updates (GWDSettingsWritable *writable)
535
535
{
536
536
    GWDSettingsImplPrivate *priv = GET_PRIVATE (writable);
537
 
    priv->freeze_count++;
 
537
    ++priv->freeze_count;
538
538
}
539
539
 
540
540
static void
543
543
    GWDSettingsImplPrivate *priv = GET_PRIVATE (writable);
544
544
 
545
545
    if (priv->freeze_count)
546
 
        priv->freeze_count--;
 
546
        --priv->freeze_count;
547
547
 
548
548
    release_notify_funcs (GWD_SETTINGS_IMPL (writable));
549
549
}
915
915
    param[n_param].name = "cmdline-options";
916
916
    param[n_param].value = cmdline_opts_value;
917
917
 
918
 
    n_param++;
 
918
    ++n_param;
919
919
 
920
920
    g_value_set_pointer (&settings_notified_value, notified);
921
921
 
922
922
    param[n_param].name = "settings-notified";
923
923
    param[n_param].value = settings_notified_value;
924
924
 
925
 
    n_param++;
 
925
    ++n_param;
926
926
 
927
927
    settings = GWD_SETTINGS_INTERFACE (g_object_newv (GWD_TYPE_SETTINGS_IMPL, n_param, param));
928
928