Re: [Qt-creator] Syntax highlighting, template templates

2009-07-23 Thread Nico Kruber
Just as a reminder: using values as template parameters still gets underlined 
as an error when a such parameter is used to create a concrete class (see 
method foo(Aelements* var) below (or in the attached file)

templateint count
class A {
public:
  A() {
std::cout  count  std::endl;
  }
};

templateint elements
void foo(Aelements* var) {
}

templateint elements
void bar() {
  std::cout  elements;
}


Nico
#include iostream

templateint count
class A {
public:
  A() {
std::cout  count  std::endl;
  }
};

templateint elements
void foo(Aelements* var) {
}

templateint elements
void bar() {
  std::cout  elements;
}


int main() {
  foo(new A5());
  return 0;
}


signature.asc
Description: This is a digitally signed message part.
___
Qt-creator mailing list
Qt-creator@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-creator


[Qt-creator] [Feature] References?

2009-07-23 Thread Boy Lenssen
Hi,

 

At the moment I look for references of a function by doing a search in
the whole project (ctrl-shift-F).

Is there something planned to make this easier?

___
Qt-creator mailing list
Qt-creator@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-creator