Navigation Menu

Skip to content

Commit

Permalink
2005-09-21 Peter Dennis Bartok <pbartok@novell.com>
Browse files Browse the repository at this point in the history
	* ContainerControl.cs: Instead of throwing an exception, print
	  a one-time warning about Validate not being implemented
	* XplatUIWin32.cs: Removed debug output


svn path=/trunk/mcs/; revision=50426
  • Loading branch information
Peter Dennis Bartok committed Sep 21, 2005
1 parent 263772f commit a6a5c01
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
@@ -1,3 +1,9 @@
2005-09-21 Peter Dennis Bartok <pbartok@novell.com>

* ContainerControl.cs: Instead of throwing an exception, print
a one-time warning about Validate not being implemented
* XplatUIWin32.cs: Removed debug output

2005-09-21 Peter Dennis Bartok <pbartok@novell.com>

* Control.cs: Only set XplatUI background if we expect the windowing
Expand Down
Expand Up @@ -115,8 +115,14 @@ public class ContainerControl : ScrollableControl, IContainerControl {

#region Public Instance Methods
[MonoTODO]
static bool ValidateWarned;
public bool Validate() {
throw new NotImplementedException();
//throw new NotImplementedException();
if (!ValidateWarned) {
Console.WriteLine("ContainerControl.Validate is not yet implemented");
ValidateWarned = true;
}
return true;
}

bool IContainerControl.ActivateControl(Control control) {
Expand Down
Expand Up @@ -1062,7 +1062,6 @@ internal enum GAllocFlags : uint {
// clip_rect = new Rectangle(rect.left, rect.top, rect.right-rect.left, rect.bottom-rect.top);

if (ps.fErase != 0) {
Console.WriteLine("Hit Clear background");
EraseWindowBackground(handle, hdc);
}
} else {
Expand Down

0 comments on commit a6a5c01

Please sign in to comment.