mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 12:00:52 +00:00
Source/NSTableView.m: all variable declarations at the blocks' starts
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@12523 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a132a6d4d1
commit
a359ad7c09
1 changed files with 6 additions and 6 deletions
|
@ -162,8 +162,8 @@ static void computeNewSelection
|
|||
// this is the first pass
|
||||
{
|
||||
int diff, i;
|
||||
diff = _currentRow - _originalRow;
|
||||
BOOL notified = NO;
|
||||
diff = _currentRow - _originalRow;
|
||||
|
||||
if (diff >= 0)
|
||||
{
|
||||
|
@ -596,8 +596,8 @@ static void computeNewSelection
|
|||
{
|
||||
int diff, i;
|
||||
int count = [_selectedRows count];
|
||||
diff = _currentRow - _originalRow;
|
||||
BOOL notified = NO;
|
||||
diff = _currentRow - _originalRow;
|
||||
|
||||
if (count > 0)
|
||||
{
|
||||
|
@ -1152,8 +1152,8 @@ static void computeNewSelection
|
|||
// (AM = 1, SD=0, AE=1, AR=*, first pass)
|
||||
int diff, i;
|
||||
int count = [_selectedRows count];
|
||||
diff = _currentRow - _originalRow;
|
||||
BOOL notified = NO;
|
||||
diff = _currentRow - _originalRow;
|
||||
|
||||
if (count > 0)
|
||||
{
|
||||
|
@ -1219,8 +1219,8 @@ static void computeNewSelection
|
|||
// (AM=1, SD=1, AE=*, AR=1)
|
||||
int diff, i;
|
||||
// int count = [_selectedRows count];
|
||||
diff = _currentRow - _originalRow;
|
||||
BOOL notified = NO;
|
||||
diff = _currentRow - _originalRow;
|
||||
|
||||
if (diff >= 0)
|
||||
{
|
||||
|
@ -1929,8 +1929,8 @@ static void computeNewSelection
|
|||
int diff, i;
|
||||
unsigned pos;
|
||||
// int count = [_selectedRows count];
|
||||
diff = _currentRow - _originalRow;
|
||||
BOOL notified = NO;
|
||||
diff = _currentRow - _originalRow;
|
||||
|
||||
if (diff >= 0)
|
||||
{
|
||||
|
@ -2296,8 +2296,8 @@ static void computeNewSelection
|
|||
int diff, i;
|
||||
unsigned pos;
|
||||
int count = [_selectedRows count];
|
||||
diff = _currentRow - _originalRow;
|
||||
BOOL notified = NO;
|
||||
diff = _currentRow - _originalRow;
|
||||
|
||||
if (diff >= 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue