Questions tagged [incompatibility]
302 questions
2
votes
2 answers
IncompatibleClassChangeError with Eclipse Jetty
I am getting the following error when I try to build a project that uses Eclipse Jetty libraries
java.lang.IncompatibleClassChangeError:
class org.eclipse.jetty.server.AbstractConnector has interface
org.eclipse.jetty.http.HttpBuffers as super…

missingfaktor
- 90,905
- 62
- 285
- 365
2
votes
1 answer
PHP/JavaScript check/uncheck working in FF but not working in IE
I got stuck with a simple piece of functionality which seems not to work on different browsers.
My need is to have a single checkbox (master checkbox) with a function to check/uncheck other checkboxes (children checkboxes). When the master checkbox…
user1096373
2
votes
3 answers
compiling c++ code using gnu/c getline() on mac osx?
I'm trying to compile a pre-existing c++ package on my mac osx leopard machine, and get the following error:
error: no matching function for call to 'getline(char**, size_t*, FILE*&)'
This is probably because getline() is a GNU specific…

Yoav
- 501
- 1
- 7
- 12
1
vote
3 answers
Error while trying to assign incompatible types
The error I get when I try to print out this list is an incompatible type error. I tried casting it as struct macro, static struct macro, a pointer, and none of it work.
struct macro {
struct macro *next;
char * macro_name;
char *…

Greg Brown
- 1,227
- 2
- 20
- 44
1
vote
1 answer
Confusing vector iterators incompatible runtime error
So here is the deal.
I have a container class here,
#include "stdafx.h"
#include "ObjectManager.h"
#include "Game.h"
ObjectManager::ObjectManager()
{
}
ObjectManager::~ObjectManager()
{
…

Randomone
- 11
- 2
1
vote
2 answers
Java- Using a float - constructor error
I don't understand why I am getting an error of an incompatible data type, I am using a float for a financial value, I do not want to go past two decimal places!
I was under the impression that you could do this with a float, however I am getting an…

Phil
- 1,393
- 5
- 23
- 42
1
vote
1 answer
IE8 incompatibility of z-index and body:after
I have a two-way gradient background and a navigation bar. All the browsers display right except IE8 (even IE7 is ok).
The simplified code is here: http://jsfiddle.net/HKg9d/3/
If you adjust the window size and let the square cross the two parts of…

DrXCheng
- 3,992
- 11
- 49
- 72
1
vote
2 answers
Android market incompatible
I have published my app on android market. I was able to download it to my phone(samsung galaxy sl [i9003]) but, recently I updated my phone through kies to 2.3.6 from 2.3.5 and now market is saying your app is incompatible with my device. What…

Rohit
- 2,538
- 6
- 28
- 41
1
vote
1 answer
Netbeans incompatible types question
I am getting the following warning in Netbeans:
incompatible types
found : carPackage.port.search
required : carPackage.SearchResponse
In my JSP page, I have the following code:
CarService service = new CarService();
CarPort port =…

Lycana
- 1,154
- 4
- 10
- 17
1
vote
1 answer
C Program struct error assigning type struct node from int
I'm new here so sorry for not providing all information I should to get help I need but here goes.
struct node {
int data;
struct node* next;
struct node* previous;
};
*currentB = MultByTen(*currentB); // this is a line in another…

gooberdope
- 75
- 1
- 3
- 13
1
vote
3 answers
Phalanger and Zendframework
Zend framework is just a collection of PHP classes.
Phalanger is a complete PHP compiler.
So why I can not port Zend Framework-based application to Phalanger??
I got the following error whene I run the app in Phalanger:
line…

Handsome Nerd
- 17,114
- 22
- 95
- 173
1
vote
3 answers
Iframe inside a DIV incompatibility Chrome-Firefox
If you put an iframe inside a div:
And use CSS to ask the iframe to occupy all the available screen area:
#big-box {
background-color:…

Ivan
- 14,692
- 17
- 59
- 96
1
vote
2 answers
Android: How to check why an app is "Not Compatible"
My app is targeting API/minSDKversion 5 and runs fine on 2.2. My friend just tried to download my app onto his Samsung Galaxy S2 running 2.3.4 but was met with the "not compatible" warning. Is there some way I can see why my app is not compatible?

cerealspiller
- 1,401
- 3
- 14
- 23
1
vote
1 answer
Why does CluePedia-v1.5.9-2 fail to work with Cytoscape-v3.10?
I have updated to Cytoscape-v3.10 and I have noticed that CluePedia-v1.5.9-2 does not work anymore with ClueGO-v2.5.9, despite the fact that I have installed both ClueGO and CluePedia apps in my computer.
Is there any incompatibility between…

Jaime Sancho López
- 11
- 2
1
vote
1 answer
flutter_widget_from_html and better_player incompatible issue
So I was trying to add flutter_widget_from_html and better_player together in my flutter app but they are incompatible with each other.
This was the error message:
C:\srcc\flutter\bin\flutter.bat --no-color pub get
Running "flutter pub get" in…

im_jm
- 11
- 3