~mc-return/compiz/compiz0.9.9.merge-plugin-screensaver

« back to all changes in this revision

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

  • Committer: MC Return
  • Date: 2012-08-11 17:17:10 UTC
  • mfrom: (3286.2.20 compiz)
  • Revision ID: mc.return@gmx.net-20120811171710-6faligyjru69ejd5
MergedĀ lp:compiz

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    std::list <CompWindow *>::iterator it;
33
33
 
34
34
    /* check if the window is already there */
35
 
    for (it = attentionWindows.begin (); it != attentionWindows.end (); it++)
 
35
    for (it = attentionWindows.begin (); it != attentionWindows.end (); ++it)
36
36
    {
37
37
        if (*it == w)
38
38
            return;
90
90
         * again, and that would mean that we'd want to handle them
91
91
         * if they became wanting attention again) */
92
92
 
93
 
        for (; it != es->attentionWindows.end (); it++)
 
93
        for (; it != es->attentionWindows.end (); ++it)
94
94
        {
95
95
            CompWindow *w = *it;
96
96