Hi Guys !
I solve the problem and thx to male for the tip.
patch for wordpress 3.9.1 :
locate /wp-content/plugins/gd-bbpress-tools/js/gd-bbpress-tools.js
replace
tinyMCE.execInstanceCommand("bbp_reply_content", "mceInsertContent", false, qout);
by
if (tinyMCE.majorVersion>="4") {
tinyMCE.execCommand('mceInsertContent', false, qout);
}
else {
tinyMCE.execInstanceCommand("bbp_reply_content", "mceInsertContent", false, qout);
}