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

« back to all changes in this revision

Viewing changes to plugins/snap/src/snap.cpp

  • 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:
52
52
    window->move (dx, dy, true);
53
53
    /* warp the pointer in the case of
54
54
     * snap release */
55
 
    if (sync)
56
 
        window->syncPosition ();
57
55
    skipNotify = false;
58
56
}
59
57
 
864
862
bool
865
863
SnapPluginVTable::init ()
866
864
{
867
 
    if (!CompPlugin::checkPluginABI ("core", CORE_ABIVERSION))
868
 
        return false;
 
865
    if (CompPlugin::checkPluginABI ("core", CORE_ABIVERSION))
 
866
        return true;
869
867
 
870
 
    return true;
 
868
    return false;
871
869
}
872