Author: jfuerth
Date: Fri Nov 7 11:48:18 2008
New Revision: 2825
Modified:
branches/release-0.9.12/src/ca/sqlpower/architect/swingui/olap/OLAPEditSession.java
Log:
Merged r2731 - Fixed NPE when loading projects with OLAP sessions
Modified:
branches/release-0.9.12/src/ca/sqlpower/architect/swingui/olap/OLAPEditSession.java
==============================================================================
---
branches/release-0.9.12/src/ca/sqlpower/architect/swingui/olap/OLAPEditSession.java
(original)
+++
branches/release-0.9.12/src/ca/sqlpower/architect/swingui/olap/OLAPEditSession.java
Fri Nov 7 11:48:18 2008
@@ -89,7 +89,6 @@
*/
private final OLAPUndoManager undoManager;
-
public static final double ZOOM_STEP = 0.25;
private ZoomAction zoomInAction;
@@ -241,6 +240,8 @@
});
frame.setContentPane(panel);
frame.pack();
+
+ frame.setIconImage(OSUtils.SCHEMA_ICON.getImage());
OLAPPlayPenFactory.setupOLAPMouseWheelActions(pp, this);
OLAPPlayPenFactory.setupOLAPKeyboardActions(pp, this);