Skip to content

Commit

Permalink
fix #2879
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@13903 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jul 9, 2010
1 parent c19af63 commit f1c9014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/composer/qgscomposer.cpp
Expand Up @@ -1048,7 +1048,7 @@ void QgsComposer::restoreWindowState()
QSettings settings;
restoreGeometry( settings.value( "/Composer/geometry" ).toByteArray() );
QVariant splitterState = settings.value( "/Composer/splitterState" );
if ( splitterState != QVariant::QVariant() )
if ( !splitterState.isNull() )
{
//mSplitter->restoreState(settings.value("/Composer/splitterState").toByteArray());
}
Expand Down

0 comments on commit f1c9014

Please sign in to comment.