Skip to content

Commit 8a1ba51

Browse files
committedMar 19, 2019
Fix warnings
1 parent f0f825a commit 8a1ba51

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed
 

‎src/app/qgsdatumtransformtablewidget.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,12 @@ QVariant QgsDatumTransformTableModel::data( const QModelIndex &index, int role )
9999
QFont font;
100100
font.setPointSize( font.pointSize() - 1 );
101101
return font;
102-
break;
103102
}
104103
case Qt::DisplayRole:
105104
switch ( index.column() )
106105
{
107106
case SourceCrsColumn:
108107
return sourceCrs;
109-
break;
110108
case SourceTransformColumn:
111109
if ( sourceTransform != -1 )
112110
{
@@ -115,7 +113,6 @@ QVariant QgsDatumTransformTableModel::data( const QModelIndex &index, int role )
115113
break;
116114
case DestinationCrsColumn:
117115
return destinationCrs;
118-
break;
119116
case DestinationTransformColumn:
120117
if ( destinationTransform != -1 )
121118
{
@@ -131,10 +128,8 @@ QVariant QgsDatumTransformTableModel::data( const QModelIndex &index, int role )
131128
{
132129
case SourceTransformColumn:
133130
return sourceTransform;
134-
break;
135131
case DestinationTransformColumn:
136132
return destinationTransform;
137-
break;
138133
default:
139134
break;
140135
}

0 commit comments

Comments
 (0)
Please sign in to comment.