Questions tagged [incompatibility]
302 questions
3
votes
3 answers
Why does this JavaScript work for FF and not IE8
I have just found out after half a year that an IE cannot process this script and now that my programmer is gone I'm stuck with it myself :-(
It works fine in FF
This is the code:
function updateFields(name, value) {
var elements =…

Tom
- 31
- 2
3
votes
0 answers
Scalala: IncompatibleClassChangeError in Quickstart
I'm trying to follow the Scalala Quickstart Guide.
I built everything with SBT (according to the instructions) and it passed all the tests when I ran test.
I'm trying to take advantage of the interactive exploration feature through the console, but…

dsg
- 12,924
- 21
- 67
- 111
3
votes
5 answers
How to announce backward incompatible changes in OSS project?
Sometimes you need to introduce backward incompatibile changes, when the improvements far outweighs the downsides. It is possible to easily switch to old behavior, but the user must be aware of such changes.
Therefore the question is: how to…

Jakub Narębski
- 309,089
- 65
- 217
- 230
3
votes
1 answer
Rails 5.0.2 incompatibility with bundler 2.0.1
I currently am running Rails 5.0.2 with bundler(<2.0, >=1.3.0). This morning when I ran 'gem install bundler', it ended up installing bundler 2.0.1 which is now incompatible with Rails 5.0.2. I'm wondering if I should be upgrading my Rails version…

user1066568
- 717
- 3
- 15
- 32
3
votes
1 answer
Android AVD Incompatibility
When I try and run an Android AVD, the emulator doesn't run my app. I've gone into run configurations, and gone to target device to set a preferred AVD to run.
Each AVD I select I get an error saying: 'Nexus 4' may be incompatible with your…
user4307551
3
votes
0 answers
visual studio 2013 update 1 c++ projects incompatible
After installation Update 1 on Visual Studio 2013 all my c++ projects have become incompatible. Solution explorer tab says: 0 projects - on Solution level and incompatible - on project level. It also says "The application is not installed".…

Nurzhan Aitbayev
- 797
- 1
- 10
- 23
3
votes
1 answer
How to tackle Scala source incompatibilities in 2.8.0?
There are a few cases of source incompatibilities with Scala 2.8.0. For example, creating an anonymous Seq once required defining the abstract def elements : Iterator[A], which is now called def iterator : Iterator[A].
To me, a "brute force"…

Tristan Juricek
- 1,804
- 18
- 20
3
votes
2 answers
Richfaces Compatibility Problems with Internet Explorer 11
I am developing a web application using RichFaces / JSF. The application behaved as expected on Safari, Mozilla, Chrome, and IE 9, however, I encountered serious compatibility problems with IE 11.
When a rich:modalPanel opens up, the dialog and…

user3191108
- 31
- 1
- 2
3
votes
3 answers
Why does my site render differently on Windows than on Mac, irrespective of browser or version?
(Images, from top: Chrome 25 Mac, Chrome 23 Windows, FF 19 Mac, FF 19 Windows, IE 8)
According to browsershots.org, my site renders the way I want it to look when using each of the currently major Mac OS X browsers— Firefox 18-19, Chrome 23-25,…

Elliott
- 75
- 2
- 10
3
votes
2 answers
Incompatibility with Java 7
For the life of me, I cannot figure out why this program does not work in Java 7. I've run it with no problems in using Java 6, but as soon as I run it with Java 7, it doesn't work.
import java.awt.event.ActionEvent;
import…

user1630640
- 33
- 1
- 1
- 4
2
votes
2 answers
Declare as NSString but Xcode treat as NSdata & received incompatible passing
I'm trying to pass an NSString address object to a UILabel text, but I received a warning from XCode compiler about incompatible pointer, as shown in the screen shot below:
And from the screen shot below you can see that my address object is…

Kin
- 171
- 1
- 14
2
votes
1 answer
Error: Node Sass version 7.0.1 is incompatible with ^4.0.0
I've tried various commands to solve this error, But it always shows the same error. I've uninstalled node sass and installed again many times but it won't works.. Its always shows the same error.. Even I've uninstalled node modules,…

Sampath kumar
- 21
- 3
2
votes
1 answer
Assigning to 'id' from incompatible type 'FBXMLHandler *'?
I am getting a Assigning to 'id' from incompatible type 'FBXMLHandler *' warning in the bolded line. This warning is in ShareKit and I am looking for a way to fix it.
FBXMLHandler* handler = [[[FBXMLHandler alloc] init] autorelease];
…

SimplyKiwi
- 12,376
- 22
- 105
- 191
2
votes
1 answer
incompatible type in overriding in third-party classes
i want define a hibernate PersistentSet for scala mutable Set, but i have this compile error :-(
class MySet extends org.hibernate.collection.internal.AbstractPersistentCollection with collection.mutable.Set[Any] {
...
}
error:
incompatible type…

Golden
- 33
- 4
2
votes
0 answers
How to get rotated_maskrcnn running in google colab?
I am trying to import Rotated Mask R-CNN libraries into google colab but seem unable to do so, likely due to incompatibility issues with other libraries.
If we try the default install the following errors occur:
#Install rotated_maskRCNN
!pip…

Rivered
- 741
- 7
- 27