#include <stdio.h>#include "pluginsubformsxc.h"#include "funcaux.h"#include <QFile>#include <QTextStream>#include <QTranslator>#include <QTextCodec>#include <QLocale>Go to the source code of this file.
Functions | |
| int | entryPoint (QApplication *) |
| int | SubForm3_SubForm3_Post (SubForm3 *sub) |
| int entryPoint | ( | QApplication * | ) |
Cargamos el sistema de traducciones una vez pasado por las configuraciones generales
Definition at line 37 of file pluginsubformsxc.cpp.
References _depura(), and cargaTraducciones().
00037 { 00038 _depura("Punto de Entrada del plugin de SubformSXC\n", 0); 00039 cargaTraducciones("pluginsubformsxc"); 00040 _depura("END Punto de Entrada del plugin de SubformSXC\n", 0); 00041 return 0; 00042 }
| int SubForm3_SubForm3_Post | ( | SubForm3 * | sub | ) |
| sub |
Definition at line 202 of file pluginsubformsxc.cpp.
References _depura().
00202 { 00203 _depura("SubForm3_SubForm3_Post", 0); 00204 myplugsubformsxc *subformsxc = new myplugsubformsxc(sub); 00205 sub->QObject::connect(sub, SIGNAL(pintaMenu(QMenu *)), subformsxc, SLOT(s_pintaMenu(QMenu *))); 00206 sub->QObject::connect(sub, SIGNAL(trataMenu(QAction *)), subformsxc, SLOT(s_trataMenu(QAction *))); 00207 _depura("END SubForm3_SubForm3_Post", 0); 00208 return 0; 00209 }
1.5.1