diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-02-02 20:12:40 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-02-02 20:12:40 +0100 |
commit | 38ce8bbbd13ff031943052865c072e86f67ef4ee (patch) | |
tree | 794b2885a7ae5ef27e9237b00f08e84ab26aacfb /cui | |
parent | 971f826a96f0938bfcfd8dfe26edd50d8e031bb4 (diff) |
cui: about.cxx: nSpace was not declared in this scope
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/about.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx index 0b0ae4ae0e0f..e1f13b154293 100644 --- a/cui/source/dialogs/about.cxx +++ b/cui/source/dialogs/about.cxx @@ -251,7 +251,7 @@ AboutDialog::AboutDialog( Window* pParent, const ResId& rId) : aLTSize = aInfoLink.CalcMinimumSize(); aLTPnt.X() = ( aOutSiz.Width() - aLTSize.Width() ) / 2; - aLTPnt.Y() = aLTPnt.Y() + aLTSize.Height() + nSpace; + aLTPnt.Y() = aLTPnt.Y() + aLTSize.Height() + nLineSpace; aInfoLink.SetPosSizePixel( aLTPnt, aLTSize ); nY += aLTSize.Height() + nLineSpace; |