You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by al...@apache.org on 2007/02/01 10:31:12 UTC

svn commit: r502169 - /incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/Application.java

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
 		{