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

« back to all changes in this revision

Viewing changes to plugins/switcher/src/switcher.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:
1193
1193
bool
1194
1194
SwitchPluginVTable::init ()
1195
1195
{
1196
 
    if (!CompPlugin::checkPluginABI ("core", CORE_ABIVERSION) ||
1197
 
        !CompPlugin::checkPluginABI ("composite", COMPIZ_COMPOSITE_ABI) ||
1198
 
        !CompPlugin::checkPluginABI ("opengl", COMPIZ_OPENGL_ABI) ||
1199
 
        !CompPlugin::checkPluginABI ("compiztoolbox", COMPIZ_COMPIZTOOLBOX_ABI))
1200
 
         return false;
 
1196
    if (CompPlugin::checkPluginABI ("core", CORE_ABIVERSION)                    &&
 
1197
        CompPlugin::checkPluginABI ("composite", COMPIZ_COMPOSITE_ABI)          &&
 
1198
        CompPlugin::checkPluginABI ("compiztoolbox", COMPIZ_COMPIZTOOLBOX_ABI)  &&
 
1199
        CompPlugin::checkPluginABI ("opengl", COMPIZ_OPENGL_ABI))
 
1200
        return true;
1201
1201
 
1202
 
    return true;
 
1202
    return false;
1203
1203
}
1204