Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDejan Gloszic2006-03-21 21:26:03 +0000
committerDejan Gloszic2006-03-21 21:26:03 +0000
commitbad4f25d62106c1b787a190c7b3bb88da22040b8 (patch)
tree2c3ff5dc93254e0cb6d42ae1df28d282bdb6fea5
parentf3abf25c77de704dcfd8ebc0e4461c807c6731d7 (diff)
downloadeclipse.platform.ua-bad4f25d62106c1b787a190c7b3bb88da22040b8.tar.gz
eclipse.platform.ua-bad4f25d62106c1b787a190c7b3bb88da22040b8.tar.xz
eclipse.platform.ua-bad4f25d62106c1b787a190c7b3bb88da22040b8.zip
*** empty log message ***v20060321
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/BrowserIntroPartImplementation.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/BrowserIntroPartImplementation.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/BrowserIntroPartImplementation.java
index 338b50278..00bbdc693 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/BrowserIntroPartImplementation.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/BrowserIntroPartImplementation.java
@@ -203,7 +203,7 @@ public class BrowserIntroPartImplementation extends
if (html != null) {
IntroModelRoot root = getModel();
if (root!=null) {
- Map props = root.getTheme().getProperties();
+ Map props = root.getTheme()!=null?root.getTheme().getProperties():null;
if (props!=null) {
String value = (String)props.get("standardSupport"); //$NON-NLS-1$
String doctype=null;

Back to the top