Skip to content

Commit f1c9014

Browse files
author
jef
committedJul 9, 2010
fix #2879
git-svn-id: http://svn.osgeo.org/qgis/trunk@13903 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent c19af63 commit f1c9014

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/composer/qgscomposer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@ void QgsComposer::restoreWindowState()
10481048
QSettings settings;
10491049
restoreGeometry( settings.value( "/Composer/geometry" ).toByteArray() );
10501050
QVariant splitterState = settings.value( "/Composer/splitterState" );
1051-
if ( splitterState != QVariant::QVariant() )
1051+
if ( !splitterState.isNull() )
10521052
{
10531053
//mSplitter->restoreState(settings.value("/Composer/splitterState").toByteArray());
10541054
}

0 commit comments

Comments
 (0)
Please sign in to comment.