summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorLuke Symes <allsymes@gmail.com>2011-06-23 20:55:31 +1200
committerMichael Meeks <michael.meeks@novell.com>2011-06-23 19:40:37 +0100
commit5438a69c001e2160cde1f4e93a68fdce9fcd6ddd (patch)
treefd2838bbf46a1c5550a7d365d8a622ffd700b269 /basic
parent9b1dbe77297343cc74cf049c64ec65d316d10e67 (diff)
Fix build by updating to new api
Hi, I was rebuilding master, and had to change a line in libs-core which used the old api for SetWindowState. Could this get pushed to master (if it's not already done by the time people read this)? Kind regards, Luke. Hi,<div><br></div><div>I was rebuilding master, and had to change a line in libs-core which used the old api for SetWindowState. Could this get pushed to master (if it&#39;s not already done by the time people read this)?</div> <div><br></div><div>Kind regards,</div><div><br></div><div>Luke.</div> >From b759a7cf43544a3eb9614d506637652ba3b20465 Mon Sep 17 00:00:00 2001 From: Luke Symes <allsymes@gmail.com> Date: Thu, 23 Jun 2011 20:50:45 +1200 Subject: [PATCH] Update for new api for SetWindowState
Diffstat (limited to 'basic')
-rw-r--r--basic/source/app/app.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/app/app.cxx b/basic/source/app/app.cxx
index 558a01353fbd..394ae13846ce 100644
--- a/basic/source/app/app.cxx
+++ b/basic/source/app/app.cxx
@@ -569,7 +569,7 @@ BasicFrame::BasicFrame() : WorkWindow( NULL,
{
Config aConf(Config::GetConfigName( Config::GetDefDirectory(), CUniString("testtool") ));
aConf.SetGroup("WinGeom");
- SetWindowState( aConf.ReadKey("WinParams", "") );
+ SetWindowState( ::rtl::OString(aConf.ReadKey("WinParams", "")) );
}
aLineNum.SetTimeoutHdl( LINK( this, BasicFrame, ShowLineNr ) );