Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. [solved] Translation on the fly crashes
Forum Updated to NodeBB v4.3 + New Features

[solved] Translation on the fly crashes

Scheduled Pinned Locked Moved General and Desktop
32 Posts 2 Posters 10.9k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    skwateur
    wrote on last edited by
    #5

    @qApp->installTranslator(translator);@ this line causes the segmentation fault apparently..

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #6

      Are you sure translator is valid ?

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0
      • S Offline
        S Offline
        skwateur
        wrote on last edited by
        #7

        @MainWindow::MainWindow(QWidget *parent) :
        QMainWindow(parent),
        ui(new Ui::MainWindow)
        {
        translator = new QTranslator(0);@

        I can translate the whole program while being on MainWindow. As soon as I go into a widget, I can no longer translate the program. It crashes :s

        1 Reply Last reply
        0
        • SGaistS Offline
          SGaistS Offline
          SGaist
          Lifetime Qt Champion
          wrote on last edited by
          #8

          That's in the MainWindow, how do you do it in your widget ?

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          0
          • S Offline
            S Offline
            skwateur
            wrote on last edited by
            #9

            I emit a signal from the widget which is then caught by the main window :
            WIDGET :
            @void ui_sys_settings::languageToEn()
            {
            emit toEnglish();
            }

            void ui_sys_settings::languageToFr()
            {
            emit toFrench();
            }@

            MAINWINDOW :
            @connect(sysSettings,SIGNAL(toEnglish()),this,SLOT(changeToEnglish()));
            connect(sysSettings,SIGNAL(toFrench()),this,SLOT(changeToFrench()));

            void MainWindow::changeToFrench()
            {
            if(!translator->isEmpty())
            qApp->removeTranslator(translator);
            }

            void MainWindow::changeToEnglish()
            {
            if(!translator->isEmpty())
            qApp->removeTranslator(translator);

            translator->load("dcl_en",QApplication::applicationDirPath());
            qApp->installTranslator(translator);
            

            }@

            1 Reply Last reply
            0
            • SGaistS Offline
              SGaistS Offline
              SGaist
              Lifetime Qt Champion
              wrote on last edited by
              #10

              Are you sure you need to re-install the translator ?

              Interested in AI ? www.idiap.ch
              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

              1 Reply Last reply
              0
              • S Offline
                S Offline
                skwateur
                wrote on last edited by
                #11

                I only install it when I load the english language file. It is never installed otherwise

                1 Reply Last reply
                0
                • SGaistS Offline
                  SGaistS Offline
                  SGaist
                  Lifetime Qt Champion
                  wrote on last edited by
                  #12

                  Strange...
                  Could you post/share a minimal compilable example that shows the problem ?

                  Interested in AI ? www.idiap.ch
                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                  1 Reply Last reply
                  0
                  • S Offline
                    S Offline
                    skwateur
                    wrote on last edited by
                    #13

                    hmmm. post an example from my own program ?

                    1 Reply Last reply
                    0
                    • SGaistS Offline
                      SGaistS Offline
                      SGaist
                      Lifetime Qt Champion
                      wrote on last edited by
                      #14

                      Rather the minimal code that reproduce the crash

                      Interested in AI ? www.idiap.ch
                      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                      1 Reply Last reply
                      0
                      • S Offline
                        S Offline
                        skwateur
                        wrote on last edited by
                        #15

                        Oh. The code that produce the crash is the code I have posted above.

                        If I take the instruction " qApp->installTranslator(translator);" off, then it doesn't crash. But I have nothing translated lol

                        1 Reply Last reply
                        0
                        • SGaistS Offline
                          SGaistS Offline
                          SGaist
                          Lifetime Qt Champion
                          wrote on last edited by
                          #16

                          Indeed, but with only pieces of code, I can't try to reproduce the crash.

                          Interested in AI ? www.idiap.ch
                          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                          1 Reply Last reply
                          0
                          • S Offline
                            S Offline
                            skwateur
                            wrote on last edited by
                            #17

                            oh. Do you want the full code of the class ?

                            1 Reply Last reply
                            0
                            • S Offline
                              S Offline
                              skwateur
                              wrote on last edited by
                              #18

                              Or I can send you the source files by email if you want. Maybe it could be easier for you to see what's wrong

                              1 Reply Last reply
                              0
                              • SGaistS Offline
                                SGaistS Offline
                                SGaist
                                Lifetime Qt Champion
                                wrote on last edited by
                                #19

                                You can also use a service like "pastbin":http://pastebin.com/

                                Interested in AI ? www.idiap.ch
                                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                1 Reply Last reply
                                0
                                • S Offline
                                  S Offline
                                  skwateur
                                  wrote on last edited by
                                  #20

                                  Should I paste all my code with pastbin SGalst ?

                                  1 Reply Last reply
                                  0
                                  • SGaistS Offline
                                    SGaistS Offline
                                    SGaist
                                    Lifetime Qt Champion
                                    wrote on last edited by
                                    #21

                                    Only what is needed to build and trigger the crash

                                    Interested in AI ? www.idiap.ch
                                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                    1 Reply Last reply
                                    0
                                    • S Offline
                                      S Offline
                                      skwateur
                                      wrote on last edited by
                                      #22

                                      It is a graphic application. You would need the images files to be able to hit the button.

                                      Any way I can give it to you ?

                                      1 Reply Last reply
                                      0
                                      • SGaistS Offline
                                        SGaistS Offline
                                        SGaist
                                        Lifetime Qt Champion
                                        wrote on last edited by
                                        #23

                                        What do you mean by "images files to be able to hit the button" ?

                                        Interested in AI ? www.idiap.ch
                                        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                        1 Reply Last reply
                                        0
                                        • S Offline
                                          S Offline
                                          skwateur
                                          wrote on last edited by
                                          #24

                                          In order to trigger the crash, you have to run the application then hit a button to load a widget. Then you have to hit another button to start the translation. (and then it crashes).

                                          If you want to trigger the crash yourself, you would need the whole program I think. (I have got too many classes ad I don't really know what is the minimal stuff you would need to be able to compile it)

                                          1 Reply Last reply
                                          0

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved