https://bugs.kde.org/show_bug.cgi?id=365437

Piotr Mierzwinski <piotr.mierzwin...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |piotr.mierzwin...@gmail.com

--- Comment #1 from Piotr Mierzwinski <piotr.mierzwin...@gmail.com> ---
Second example:
The same, as described above, is happened when I try to rename argument "e" in
below function to "e2"

void MyClass::foo2( QEvent *e )
{
    bool stat = true;
    int a = 1;
    if (stat) {
        if (a == 1)
            e->accept();
        else
            e->ignore();
    }
}

After using Rename assistant I get following code:
void MyClass::foo2( QEvent *e2 )
{
    bool stat = true;
    int a = 1;
    if (stat) {
        if (a == 1)
             {
            e2->accept();
        else
             {
            e2->ignore();
    }
}

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to