Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
No visutal indicator to modify crosstab in BIRT Studio(T28535)
  • Loading branch information
Gang Liu committed Dec 20, 2010
1 parent fe3d1d8 commit 2e17bd9
Showing 1 changed file with 6 additions and 1 deletion.
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2004, 2008 Actuate Corporation.
* Copyright (c) 2004, 2010 Actuate Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
Expand Down Expand Up @@ -607,6 +607,11 @@ else if ( genBy instanceof TemplateDesign )
TemplateDesign templateDesign = (TemplateDesign) genBy;
handle = templateDesign.getHandle( );
}
else if (genBy instanceof ExtendedItemDesign)
{
ExtendedItemDesign extendedItemDesign = (ExtendedItemDesign)genBy;
handle = extendedItemDesign.getHandle( );
}
// judge the content is belong table template element or not.
if ( ( null != handle ) && handle.isTemplateParameterValue( ) )
{
Expand Down

0 comments on commit 2e17bd9

Please sign in to comment.