Author: almaw
Date: Thu Feb 1 01:31:11 2007
New Revision: 502169
URL: http://svn.apache.org/viewvc?view=rev&rev=502169
Log:
Fix internal deprecated usage of ajax settings.
Modified:
incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/Application.java
Modified:
incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/Application.java
URL:
http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/Application.java?view=diff&rev=502169&r1=502168&r2=502169
==============================================================================
---
incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/Application.java
(original)
+++
incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/Application.java
Thu Feb 1 01:31:11 2007
@@ -395,7 +395,7 @@
getMarkupSettings().setStripWicketTags(false);
getExceptionSettings().setUnexpectedExceptionDisplay(
IExceptionSettings.SHOW_EXCEPTION_PAGE);
- getAjaxSettings().setAjaxDebugModeEnabled(true);
+ getDebugSettings().setAjaxDebugModeEnabled(true);
}
else if (DEPLOYMENT.equalsIgnoreCase(configurationType))
{
@@ -405,7 +405,7 @@
getMarkupSettings().setStripWicketTags(true);
getExceptionSettings().setUnexpectedExceptionDisplay(
IExceptionSettings.SHOW_INTERNAL_ERROR_PAGE);
- getAjaxSettings().setAjaxDebugModeEnabled(false);
+ getDebugSettings().setAjaxDebugModeEnabled(false);
}
else
{