Help PARTY FINDER

08/28/2021 16:21 ryandifferdu29#1
Hello I allow myself to recreate a topic because I have a problem for the addition of the party finder on but sources, I still have a problem all the others have been repaired, but I do not understand why the identifier pWndButt6on is not declared? I did a search for this keyword with notepadd ++ in the file or I copied the party finder and it does not find me this keyword , so I can not know in that it file or in that it directory go and what modified having no experience

this code erreur vs2019*
Code:
Gravité	Code	Description	Projet	Fichier	Ligne	État de la suppression
Erreur (active)	E0020	identificateur "pWndButt6on" non défini	Neuz	C:\Users\Asus\Desktop\K18\Source\Source\_Interface\WndParty.cpp	465
files error WndParty.cpp

Code:
#ifdef __PARTY_FINDER
			g_DPlay.SendPartyJoinAllow( pWndButt6on->GetCheck() );
#endif
Thanks and sorry for the new post
08/28/2021 18:20 Nιgнтмαяε#2
Quote:
Originally Posted by ryandifferdu29 View Post
Hello I allow myself to recreate a topic because I have a problem for the addition of the party finder on but sources, I still have a problem all the others have been repaired, but I do not understand why the identifier pWndButt6on is not declared? I did a search for this keyword with notepadd ++ in the file or I copied the party finder and it does not find me this keyword , so I can not know in that it file or in that it directory go and what modified having no experience

this code erreur vs2019*
Code:
Gravité	Code	Description	Projet	Fichier	Ligne	État de la suppression
Erreur (active)	E0020	identificateur "pWndButt6on" non défini	Neuz	C:\Users\Asus\Desktop\K18\Source\Source\_Interface\WndParty.cpp	465
files error WndParty.cpp

Code:
#ifdef __PARTY_FINDER
			g_DPlay.SendPartyJoinAllow( pWndButt6on->GetCheck() );
#endif
Thanks and sorry for the new post
Change:
Code:
#ifdef __PARTY_FINDER
			g_DPlay.SendPartyJoinAllow( pWndButt6on->GetCheck() );
#endif
To:
Code:
#ifdef __PARTY_FINDER
			g_DPlay.SendPartyJoinAllow( pWndButton->GetCheck() );
#endif
09/22/2021 00:46 FinalXtor#3
Thanks you very much its fix :D