PDA

View Full Version : Compler Error



legacy-Konma
08-31-2003, 07:45 AM
I am getting this compiler error, but i have no idear what could be wrong in my files.



Assertion failed: FriendlyName!=NAME_None [File:UnClass.cpp] [Line: 683]

History: UStruct::Serialize <- (GWZBrowser_ServerListPageBuddy XGWZInterface.None) <- UState::Serialize <- UClass::Serialize <- (GWZBrowser_ServerListPageBuddy XGWZInterface.None) <- FArchiveSaveTagExports<<Obj <- FPropertyTag::SerializeTaggedProperty <- SaveStream <- UStruct::SerializeTaggedProperties <- (__OnKeyEvent__Delegate[0]) <- UClass::Serialize <- (Class XGWZInterface.GWZBrowser_ServerListPageBuddy) <- FArchiveSaveTagExports<<Obj <- UObjectProperty::Serialize <- (ObjectProperty XGWZInterface.GWZBrowser_AddBuddy.MyBuddyPage) <- FArchiveSaveTagExports<<Obj <- UField::Serialize <- (ObjectProperty XGWZInterface.GWZBrowser_AddBuddy.MyNewBuddy) <- UProperty::Serialize <- (ObjectProperty XGWZInterface.GWZBrowser_AddBuddy.MyNewBuddy) <- UObjectProperty::Serialize <- (ObjectProperty XGWZInterface.GWZBrowser_AddBuddy.MyNewBuddy) <- FArchiveSaveTagExports<<Obj <- UField::Serialize <- (Function XGWZInterface.GWZBrowser_AddBuddy.InitComponent) <- UStruct::Serialize <- (Function XGWZInterface.GWZBrowser_AddBuddy.InitComponent) <- UFunction::Serialize <- FArchiveSaveTagExports<<Obj <- UField::Serialize <- (Function XGWZInterface.GWZBrowser_AddBuddy.InternalOnClick) <- UStruct::Serialize <- (Function XGWZInterface.GWZBrowser_AddBuddy.InternalOnClick) <- UFunction::Serialize <- FArchiveSaveTagExports<<Obj <- UStruct::Serialize <- (Class XGWZInterface.GWZBrowser_AddBuddy) <- UState::Serialize <- UClass::Serialize <- (Class XGWZInterface.GWZBrowser_AddBuddy) <- FArchiveSaveTagExports<<Obj <- TagExports <- UObject::SavePackage <- UMakeCommandlet::Main

elmuerte
08-31-2003, 08:20 AM
like I said on irc, look here:

GWZBrowser_ServerListPageBuddy XGWZInterface.None

that's all anyone could help you unless you post a code sniplet

legacy-segall
08-31-2003, 03:48 PM
I had this error a few days ago, and it's caused by missing delegates. If the parent class had a "global" delegate (defined outside of Begin/End declarations) then you have to use a global delegate in your derived class too, or you'll get that error. GWZBrowser_ServerListPageBuddy is probably missing this delegate.