Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Program doesn't work on Nokia E50-2 (E50 without camera) #56

Open
y023rus opened this issue Aug 17, 2022 · 6 comments
Open

Program doesn't work on Nokia E50-2 (E50 without camera) #56

y023rus opened this issue Aug 17, 2022 · 6 comments
Labels
bug Something isn't working

Comments

@y023rus
Copy link

y023rus commented Aug 17, 2022

I see two symptoms:

  • no app icon in "Installed" folder, just program name;
  • if program start window with warning appears: "Меню: функция не поддеживается."
@artem78 artem78 added the bug Something isn't working label Aug 17, 2022
@Computershik73
Copy link

Usually this happens, when a some unsupported instruction was called. The developer can try to replace "/" operation to "lldiv".
This helped me to run my Qt apps on Symbian 9.2-9.3.

@artem78
Copy link
Owner

artem78 commented Sep 6, 2022

lldiv

What is it?

@Computershik73
Copy link

What is it?
A simple example. I use it to translate milliseconds to minutes and hours. Works on Symbian <=9.3, instead of "/" operation.

lldiv_t output;
output = lldiv(time, 60000);
quint32 q = output.quot;
lldiv_t mins;
mins = lldiv(q, 60);
quint32 qq = mins.rem;

@artem78
Copy link
Owner

artem78 commented Sep 7, 2022

I don't know QT, I only use pure Symbian C++. But thanks for the example.

@Computershik73
Copy link

I only use pure Symbian C++

It is a C++ piece of code (but can also be used in Qt).

artem78 added a commit that referenced this issue Sep 18, 2022
Icon compression which supported only since Symbian 9.2 turned off
@artem78
Copy link
Owner

artem78 commented Sep 18, 2022

I fixed first part of issue. What about second one, I found the reason, but can't fix it so far. It is coordinates dialog used in "Go to..." -> "Coordinates". Symbian 9.1 doesn't support this kind of dialog (only Symbian 9.2 and later). This feature was implemented by another person and I asked him for help.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants