Project
ReSharper
Priority
Critical
Type
Bug
Fix versions
4.5, 4.5.1, 5.0
State
Fixed
Assignee
Sergey Shkredov
Subsystem
No subsystem
Affected versions
No Affected versions
Fixed in build
5.0.1612.107  
  • Created by   Igor A
    2 years ago (17 Apr 2009 01:36)
  • Updated by   Olga Lobacheva
    23 months ago (15 Feb 2010 21:45)
  • Jira: RSRP-104076
    (history, comments)
 
RSRP-104076 Refactorings: radiobuttons in Make Static dialog should have the same accessibility
0
Issue is visible to: All Users
  The issue is visible to the selected user group only
Step to reproduce:
1. Choose Make Property Static refactoring for some property oin C# code.
Appropriate dialog appears.
Wrong result: radiobuttons in this dialog have different accessibility, but they should be of same accessibility (see attached file for details).

Issue was closed
Comments (1)
 
History
 
Linked Issues (?)
 
TeamCity Changes (0)
 
Sergey Shkredov
  Sergey Shkredov
20 Apr 2009 14:22
2 years ago
   private int myY;

    public int Tttt
    {
      get
      {
        return myY;
      }
      set
      {
        myY = 123;
      }
    }