Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. International
  3. India
  4. Slot
Forum Updated to NodeBB v4.3 + New Features

Slot

Scheduled Pinned Locked Moved India
28 Posts 7 Posters 15.0k 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.
  • A Offline
    A Offline
    andre
    wrote on last edited by
    #21

    Are you sure this is the whole output? It seems like something is wrong in your mainwindow.h. Please post both the complete compilation output, and the contents of mainwindow.h.

    1 Reply Last reply
    0
    • G Offline
      G Offline
      goetz
      wrote on last edited by
      #22

      [quote author="Revu" date="1298453513"]
      main.cpp: In function ‘int main(int, char**)’:
      main.cpp:10: error: ‘mainwindow’ was not declared in this scope
      main.cpp:10: error: expected ‘;’ before ‘mWindow’
      main.cpp:11: error: ‘mWindow’ was not declared in this scope
      make: *** [main.o] Error 1

      please help[/quote]

      Seems that you should read some C++ tutorial first. This are some basic error messages from the compiler. You must be familiar with header and implementation files before you can use Qt successfully.

      And as Andre already mentioned, it's hard to analyze the error without the contents of mainwindow.h.

      http://www.catb.org/~esr/faqs/smart-questions.html

      1 Reply Last reply
      0
      • R Offline
        R Offline
        Revu
        wrote on last edited by
        #23

        the code is as below:
        @#ifdef MAINWINDOW_H
        #define MAINWINDOW_H

        #include<QDialog>
        #include"subWindow.h"
        #include "ui_main.h"

        namespace Ui
        {
        class mainwindow;
        }

        class mainwindow:public QDialog,public Ui::main
        {
        Q_OBJECT

        public:
        explicit mainwindow(QWidget *parent=0);
        ~mainwindow();

        private slots:
        void on_next_click();

        };
        #endif@

        Every fall is to raise higher than Before.

        1 Reply Last reply
        0
        • R Offline
          R Offline
          Revu
          wrote on last edited by
          #24

          @Volker:Thank You for your advice.

          Can you suggest me few online tutorials to understand the concepts clearly?

          Every fall is to raise higher than Before.

          1 Reply Last reply
          0
          • R Offline
            R Offline
            Revu
            wrote on last edited by
            #25

            Am very new to coding so please me for my mistakes.

            Every fall is to raise higher than Before.

            1 Reply Last reply
            0
            • G Offline
              G Offline
              goetz
              wrote on last edited by
              #26

              Change this:

              @
              #ifdef MAINWINDOW_H
              #define MAINWINDOW_H
              @

              to this:

              @
              #ifndef MAINWINDOW_H
              #define MAINWINDOW_H
              @

              http://www.catb.org/~esr/faqs/smart-questions.html

              1 Reply Last reply
              0
              • A Offline
                A Offline
                andre
                wrote on last edited by
                #27

                Good catch, Volker!

                1 Reply Last reply
                0
                • R Offline
                  R Offline
                  Revu
                  wrote on last edited by
                  #28

                  @Volker: thank you so much I missed to check that.

                  Every fall is to raise higher than Before.

                  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