Ignore:
Timestamp:
12/18/13 09:51:19 (10 years ago)
Author:
keeloo
Message:
 
Location:
vlo/branches/to-wicket-1.6
Files:
1 edited
2 copied

Legend:

Unmodified
Added
Removed
  • vlo/branches/to-wicket-1.6/vlo_web_app/src/main/java/eu/clarin/cmdi/vlo/pages/SearchPageLinkPanel.java

    r2832 r4199  
    22package eu.clarin.cmdi.vlo.pages;
    33
     4import org.apache.wicket.AttributeModifier;
    45import org.apache.wicket.behavior.SimpleAttributeModifier;
    56import org.apache.wicket.markup.html.basic.Label;
     
    1920
    2021    private final static ImageResource SEARCHPAGE_ICON =
    21             new ImageResource(new ContextRelativeResource("Images/Crystal_Clear_action_filefind.png"),
     22            new ImageResource("Images/Crystal_Clear_action_filefind.png",
    2223            "Search page");
    2324
     
    3940        String title;
    4041        title = imageResource.getTitle();
    41         resourceImg.add(new SimpleAttributeModifier("title", title));
    42         resourceImg.add(new SimpleAttributeModifier("alt", title));
     42        resourceImg.add(new AttributeModifier("title", title));
     43        resourceImg.add(new AttributeModifier("alt", title));
    4344
    4445        // ...
Note: See TracChangeset for help on using the changeset viewer.