15 days SEO trial for ( mail-archive.com )

2015-03-20 Thread scape88933
Hello Sir / Madam Did you know? Over 80% of consumers do search online before purchasing from a company. Did you know? When searching for any service or product 42% choose 1st listing on the first page and 21% choose the 2nd listing. This shows that if your business or your website is not on

Re: Does qt-at-spi actually work with Qt5?

2015-03-20 Thread Jason White
Mario Lang ml...@debian.org wrote: What am I missing? Is this actually *supposed* to work? QT accessibility was significantly redesigned for QT5. If memory serves, it wasn't released until QT 5.2. The separate QT-AT-SPI should no longer be needed. On the other hand, I haven't read any

Does qt-at-spi actually work with Qt5?

2015-03-20 Thread Mario Lang
Hi. I am trying to evaluate the cross-platform accessibility of Qt. I am using the most basic Qt example possible: #include QApplication #include QTextEdit int main(int argv, char **args) { QApplication app(argv, args); QTextEdit textEdit; textEdit.show(); return app.exec(); }