Kaydet (Commit) cb6b6e28 authored tarafından Noel Grandin's avatar Noel Grandin

Fix for method name change

In commit
  43debfae
  "General cleanup of OfficeBeans"
In class
   com.sun.star.comp.beans.OOoBean,
the method
   aquireSystemWindow
changed name to
   acquireSystemWindow

Change-Id: I5a9a16c1374d7dbc828ee2fa76c193b207881415
üst 09f50c01
......@@ -302,7 +302,7 @@ public class OOoBeanTest
}
}
/** Test repeated OOoBean.aquireSystemWindow and OOoBean.releaseSystemWindow
/** Test repeated OOoBean.acquireSystemWindow and OOoBean.releaseSystemWindow
* calls.
* @throws Exception
*/
......@@ -316,7 +316,7 @@ public class OOoBeanTest
for (int i = 0; i < 100; i++)
{
b.releaseSystemWindow();
b.aquireSystemWindow();
b.acquireSystemWindow();
}
if (!f.checkUnoFramePosition())
{
......@@ -419,7 +419,7 @@ public class OOoBeanTest
bean.releaseSystemWindow();
frame.remove(bean);
frame.add(bean, BorderLayout.CENTER);
bean.aquireSystemWindow();
bean.acquireSystemWindow();
}
if (!isWindows())
......@@ -504,7 +504,7 @@ public class OOoBeanTest
try {
frame.add(bean, BorderLayout.CENTER);
bean.aquireSystemWindow();
bean.acquireSystemWindow();
frame.validate();
} catch (Exception e) {
e.printStackTrace();
......
......@@ -61,7 +61,7 @@ class WriterFrame extends java.awt.Frame
pack();
setBounds(x, y, width, height);
setVisible(true);
m_bean.aquireSystemWindow();
m_bean.acquireSystemWindow();
}
}
catch (Exception e)
......@@ -193,7 +193,7 @@ class WriterFrame extends java.awt.Frame
public void addOOoBean() throws Exception
{
add(m_bean, BorderLayout.CENTER);
m_bean.aquireSystemWindow();
m_bean.acquireSystemWindow();
validate();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment