Revision f55cf326 web_client/src/gr/grnet/pithos/web/client/AbstractPropertiesDialog.java

b/web_client/src/gr/grnet/pithos/web/client/AbstractPropertiesDialog.java
83 83
	public AbstractPropertiesDialog() {
84 84

  
85 85
		// Enable IE selection for the dialog (must disable it upon closing it)
86
		GSS.enableIESelection();
86
		Pithos.enableIESelection();
87 87

  
88 88
		setAnimationEnabled(true);
89 89

  
......
94 94
	 * @param userId
95 95
	 */
96 96
	protected void updateTags() {
97
		GetCommand<TagsResource> tc = new GetCommand<TagsResource>(TagsResource.class, GSS.get().getCurrentUserResource().getTagsPath(),null) {
97
		GetCommand<TagsResource> tc = new GetCommand<TagsResource>(TagsResource.class, Pithos.get().getCurrentUserResource().getTagsPath(),null) {
98 98

  
99 99
			@Override
100 100
			public void onComplete() {
......
130 130
			@Override
131 131
			public void onError(Throwable t) {
132 132
				GWT.log("", t);
133
				GSS.get().displayError("Unable to fetch user tags");
133
				Pithos.get().displayError("Unable to fetch user tags");
134 134
			}
135 135
		};
136 136
		DeferredCommand.addCommand(tc);
......
173 173
	 * (we disable the prevention on creation of the dialog)
174 174
	 */
175 175
	public void closeDialog() {
176
		GSS.preventIESelection();
176
		Pithos.preventIESelection();
177 177
		hide();
178 178
	}
179 179
}

Also available in: Unified diff